clover-mainnet
| Properties | |
|---|---|
| Spec name | clover-mainnet |
| Implementation name | clover-mainnet |
| Spec version | 25 |
| SS58 Format | 128 |
| Token symbol | CLV |
| Token decimals | 18 |
System
Calls
fill_block
A dispatch that will fill the block weight up to the given ratio.
Attributes
| Name | Type |
|---|---|
| ratio | Perbill |
Python
call = substrate.compose_call(
'System', 'fill_block', {'ratio': 'u32'}
)
remark
Make some on-chain remark.
# <weight>
- O(1)
# </weight>
Attributes
| Name | Type |
|---|---|
| remark | Vec<u8> |
Python
call = substrate.compose_call(
'System', 'remark', {'remark': 'Bytes'}
)
set_heap_pages
Set the number of pages in the WebAssembly environment's heap.
Attributes
| Name | Type |
|---|---|
| pages | u64 |
Python
call = substrate.compose_call(
'System', 'set_heap_pages', {'pages': 'u64'}
)
set_code
Set the new runtime code.
# <weight>
- O(C + S) where C length of code and S complexity of can_set_code
- 1 call to can_set_code: O(S) (calls sp_io::misc::runtime_version which is
expensive).
- 1 storage write (codec O(C)).
- 1 digest item.
- 1 event.
The weight of this function is dependent on the runtime, but generally this is very
expensive. We will treat this as a full block.
# </weight>
Attributes
| Name | Type |
|---|---|
| code | Vec<u8> |
Python
call = substrate.compose_call(
'System', 'set_code', {'code': 'Bytes'}
)
set_code_without_checks
Set the new runtime code without doing any checks of the given code.
# <weight>
- O(C) where C length of code
- 1 storage write (codec O(C)).
- 1 digest item.
- 1 event.
The weight of this function is dependent on the runtime. We will treat this as a full
block. # </weight>
Attributes
| Name | Type |
|---|---|
| code | Vec<u8> |
Python
call = substrate.compose_call(
'System', 'set_code_without_checks', {'code': 'Bytes'}
)
set_storage
Set some items of storage.
Attributes
| Name | Type |
|---|---|
| items | Vec<KeyValue> |
Python
call = substrate.compose_call(
'System', 'set_storage', {'items': [('Bytes', 'Bytes')]}
)
kill_storage
Kill some items from storage.
Attributes
| Name | Type |
|---|---|
| keys | Vec<Key> |
Python
call = substrate.compose_call(
'System', 'kill_storage', {'keys': ['Bytes']}
)
kill_prefix
Kill all storage items with a key that starts with the given prefix.
NOTE: We rely on the Root origin to provide us the number of subkeys under the prefix we are removing to accurately calculate the weight of this function.
Attributes
| Name | Type |
|---|---|
| prefix | Key |
| subkeys | u32 |
Python
call = substrate.compose_call(
'System', 'kill_prefix', {'prefix': 'Bytes', 'subkeys': 'u32'}
)
remark_with_event
Make some on-chain remark and emit event.
Attributes
| Name | Type |
|---|---|
| remark | Vec<u8> |
Python
call = substrate.compose_call(
'System', 'remark_with_event', {'remark': 'Bytes'}
)
Events
ExtrinsicSuccess
An extrinsic completed successfully.
Attributes
| Name | Type | Composition |
|---|---|---|
| dispatch_info | DispatchInfo |
{'weight': 'u64', 'class': ('Normal', 'Operational', 'Mandatory'), 'pays_fee': ('Yes', 'No')} |
ExtrinsicFailed
An extrinsic failed.
Attributes
| Name | Type | Composition |
|---|---|---|
| dispatch_error | DispatchError |
{'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer')} |
| dispatch_info | DispatchInfo |
{'weight': 'u64', 'class': ('Normal', 'Operational', 'Mandatory'), 'pays_fee': ('Yes', 'No')} |
CodeUpdated
:code was updated.
Attributes
No attributes
NewAccount
A new account was created.
Attributes
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
KilledAccount
An account was reaped.
Attributes
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
Remarked
On on-chain remark happened.
Attributes
| Name | Type | Composition |
|---|---|---|
| sender | T::AccountId |
AccountId |
| hash | T::Hash |
[u8; 32] |
Storage functions
Account
The full account information for a particular account ID.
Python
result = substrate.query(
'System', 'Account', ['AccountId']
)
Return value
{
'consumers': 'u32',
'data': {
'fee_frozen': 'u128',
'free': 'u128',
'misc_frozen': 'u128',
'reserved': 'u128',
},
'nonce': 'u32',
'providers': 'u32',
'sufficients': 'u32',
}
ExtrinsicCount
Total extrinsics count for the current block.
Python
result = substrate.query(
'System', 'ExtrinsicCount', []
)
Return value
'u32'
BlockWeight
The current weight for the block.
Python
result = substrate.query(
'System', 'BlockWeight', []
)
Return value
{'mandatory': 'u64', 'normal': 'u64', 'operational': 'u64'}
AllExtrinsicsLen
Total length (in bytes) for all extrinsics put together, for the current block.
Python
result = substrate.query(
'System', 'AllExtrinsicsLen', []
)
Return value
'u32'
BlockHash
Map of block numbers to block hashes.
Python
result = substrate.query(
'System', 'BlockHash', ['u32']
)
Return value
'[u8; 32]'
ExtrinsicData
Extrinsics data for the current block (maps an extrinsic's index to its data).
Python
result = substrate.query(
'System', 'ExtrinsicData', ['u32']
)
Return value
'Bytes'
Number
The current block number being processed. Set by execute_block.
Python
result = substrate.query(
'System', 'Number', []
)
Return value
'u32'
ParentHash
Hash of the previous block.
Python
result = substrate.query(
'System', 'ParentHash', []
)
Return value
'[u8; 32]'
Digest
Digest of the current block, also part of the block header.
Python
result = substrate.query(
'System', 'Digest', []
)
Return value
{
'logs': [
{
'Consensus': ('[u8; 4]', 'Bytes'),
'Other': 'Bytes',
None: None,
'PreRuntime': ('[u8; 4]', 'Bytes'),
'RuntimeEnvironmentUpdated': None,
'Seal': ('[u8; 4]', 'Bytes'),
},
],
}
Events
Events deposited for the current block.
NOTE: The item is unbound and should therefore never be read on chain. It could otherwise inflate the PoV size of a block.
Events have a large in-memory size. Box the events to not go out-of-memory just in case someone still reads them from within the runtime.
Python
result = substrate.query(
'System', 'Events', []
)
Return value
[
{
'event': {
None: None,
'AssetConfig': {
'AssetLocationRegistered': ('u64', 'scale_info::132'),
'FeeRateChanged': ('u64', (None, 'u128')),
},
'Assets': {
'ApprovalCancelled': {
'asset_id': 'u64',
'delegate': 'AccountId',
'owner': 'AccountId',
},
'ApprovedTransfer': {
'amount': 'u128',
'asset_id': 'u64',
'delegate': 'AccountId',
'source': 'AccountId',
},
'AssetFrozen': {'asset_id': 'u64'},
'AssetStatusChanged': {'asset_id': 'u64'},
'AssetThawed': {'asset_id': 'u64'},
'Burned': {
'asset_id': 'u64',
'balance': 'u128',
'owner': 'AccountId',
},
'Created': {
'asset_id': 'u64',
'creator': 'AccountId',
'owner': 'AccountId',
},
'Destroyed': {'asset_id': 'u64'},
'ForceCreated': {'asset_id': 'u64', 'owner': 'AccountId'},
'Frozen': {'asset_id': 'u64', 'who': 'AccountId'},
'Issued': {
'asset_id': 'u64',
'owner': 'AccountId',
'total_supply': 'u128',
},
'MetadataCleared': {'asset_id': 'u64'},
'MetadataSet': {
'asset_id': 'u64',
'decimals': 'u8',
'is_frozen': 'bool',
'name': 'Bytes',
'symbol': 'Bytes',
},
'OwnerChanged': {'asset_id': 'u64', 'owner': 'AccountId'},
'TeamChanged': {
'admin': 'AccountId',
'asset_id': 'u64',
'freezer': 'AccountId',
'issuer': 'AccountId',
},
'Thawed': {'asset_id': 'u64', 'who': 'AccountId'},
'Transferred': {
'amount': 'u128',
'asset_id': 'u64',
'from': 'AccountId',
'to': 'AccountId',
},
'TransferredApproved': {
'amount': 'u128',
'asset_id': 'u64',
'delegate': 'AccountId',
'destination': 'AccountId',
'owner': 'AccountId',
},
},
'Balances': {
'BalanceSet': {
'free': 'u128',
'reserved': 'u128',
'who': 'AccountId',
},
'Deposit': {'amount': 'u128', 'who': 'AccountId'},
'DustLost': {'account': 'AccountId', 'amount': 'u128'},
'Endowed': {'account': 'AccountId', 'free_balance': 'u128'},
'ReserveRepatriated': {
'amount': 'u128',
'destination_status': 'scale_info::29',
'from': 'AccountId',
'to': 'AccountId',
},
'Reserved': {'amount': 'u128', 'who': 'AccountId'},
'Slashed': {'amount': 'u128', 'who': 'AccountId'},
'Transfer': {
'amount': 'u128',
'from': 'AccountId',
'to': 'AccountId',
},
'Unreserved': {'amount': 'u128', 'who': 'AccountId'},
'Withdraw': {'amount': 'u128', 'who': 'AccountId'},
},
'BaseFee': {
'BaseFeeOverflow': None,
'IsActive': 'bool',
'NewBaseFeePerGas': '[u64; 4]',
'NewElasticity': 'u32',
},
'Bounties': {
'BountyAwarded': {'beneficiary': 'AccountId', 'index': 'u32'},
'BountyBecameActive': {'index': 'u32'},
'BountyCanceled': {'index': 'u32'},
'BountyClaimed': {
'beneficiary': 'AccountId',
'index': 'u32',
'payout': 'u128',
},
'BountyExtended': {'index': 'u32'},
'BountyProposed': {'index': 'u32'},
'BountyRejected': {'bond': 'u128', 'index': 'u32'},
},
'CloverClaims': {
'BridgeAccountChanged': 'AccountId',
'BurnFeeUpdated': 'u128',
'Burned': ('AccountId', '[u8; 20]', 'u128'),
'ClaimLimitUpdated': 'u128',
'Claimed': ('AccountId', '[u8; 20]', 'u128'),
'ElasticBridgeAccountChanged': ('scale_info::81', 'AccountId'),
'ElasticBurned': (
'scale_info::81',
'AccountId',
'[u8; 20]',
'u128',
),
'ElasticClaimLimitUpdated': ('scale_info::81', 'u128'),
'ElasticClaimed': (
'scale_info::81',
'AccountId',
'[u8; 20]',
'u128',
),
'ElasticFeeUpdated': ('scale_info::81', 'u128', 'u128'),
'ElasticMintSuccess': (
'scale_info::81',
'[u8; 32]',
'[u8; 20]',
'u128',
),
'MintFeeUpdated': 'u128',
'MintSuccess': ('[u8; 32]', '[u8; 20]', 'u128'),
},
'CollatorSelection': {
'CandidateAdded': {
'account_id': 'AccountId',
'deposit': 'u128',
},
'CandidateRemoved': {'account_id': 'AccountId'},
'NewCandidacyBond': {'bond_amount': 'u128'},
'NewDesiredCandidates': {'desired_candidates': 'u32'},
'NewInvulnerables': {'invulnerables': ['AccountId']},
},
'Contracts': {
'CodeRemoved': {'code_hash': '[u8; 32]'},
'CodeStored': {'code_hash': '[u8; 32]'},
'ContractCodeUpdated': {
'contract': 'AccountId',
'new_code_hash': '[u8; 32]',
'old_code_hash': '[u8; 32]',
},
'ContractEmitted': {'contract': 'AccountId', 'data': 'Bytes'},
'Instantiated': {
'contract': 'AccountId',
'deployer': 'AccountId',
},
'Terminated': {
'beneficiary': 'AccountId',
'contract': 'AccountId',
},
},
'Council': {
'Approved': {'proposal_hash': '[u8; 32]'},
'Closed': {
'no': 'u32',
'proposal_hash': '[u8; 32]',
'yes': 'u32',
},
'Disapproved': {'proposal_hash': '[u8; 32]'},
'Executed': {
'proposal_hash': '[u8; 32]',
'result': 'scale_info::37',
},
'MemberExecuted': {
'proposal_hash': '[u8; 32]',
'result': 'scale_info::37',
},
'Proposed': {
'account': 'AccountId',
'proposal_hash': '[u8; 32]',
'proposal_index': 'u32',
'threshold': 'u32',
},
'Voted': {
'account': 'AccountId',
'no': 'u32',
'proposal_hash': '[u8; 32]',
'voted': 'bool',
'yes': 'u32',
},
},
'CumulusXcm': {
'ExecutedDownward': ('[u8; 8]', 'scale_info::89'),
'InvalidFormat': '[u8; 8]',
'UnsupportedVersion': '[u8; 8]',
},
'Democracy': {
'Blacklisted': {'proposal_hash': '[u8; 32]'},
'Cancelled': {'ref_index': 'u32'},
'Delegated': {'target': 'AccountId', 'who': 'AccountId'},
'Executed': {'ref_index': 'u32', 'result': 'scale_info::37'},
'ExternalTabled': None,
'NotPassed': {'ref_index': 'u32'},
'Passed': {'ref_index': 'u32'},
'PreimageInvalid': {
'proposal_hash': '[u8; 32]',
'ref_index': 'u32',
},
'PreimageMissing': {
'proposal_hash': '[u8; 32]',
'ref_index': 'u32',
},
'PreimageNoted': {
'deposit': 'u128',
'proposal_hash': '[u8; 32]',
'who': 'AccountId',
},
'PreimageReaped': {
'deposit': 'u128',
'proposal_hash': '[u8; 32]',
'provider': 'AccountId',
'reaper': 'AccountId',
},
'PreimageUsed': {
'deposit': 'u128',
'proposal_hash': '[u8; 32]',
'provider': 'AccountId',
},
'ProposalCanceled': {'prop_index': 'u32'},
'Proposed': {'deposit': 'u128', 'proposal_index': 'u32'},
'Seconded': {'prop_index': 'u32', 'seconder': 'AccountId'},
'Started': {'ref_index': 'u32', 'threshold': 'scale_info::36'},
'Tabled': {
'deposit': 'u128',
'depositors': ['AccountId'],
'proposal_index': 'u32',
},
'Undelegated': {'account': 'AccountId'},
'Vetoed': {
'proposal_hash': '[u8; 32]',
'until': 'u32',
'who': 'AccountId',
},
'Voted': {
'ref_index': 'u32',
'vote': 'scale_info::39',
'voter': 'AccountId',
},
},
'DmpQueue': {
'ExecutedDownward': {
'message_id': '[u8; 32]',
'outcome': 'scale_info::89',
},
'InvalidFormat': {'message_id': '[u8; 32]'},
'OverweightEnqueued': {
'message_id': '[u8; 32]',
'overweight_index': 'u64',
'required_weight': 'u64',
},
'OverweightServiced': {
'overweight_index': 'u64',
'weight_used': 'u64',
},
'UnsupportedVersion': {'message_id': '[u8; 32]'},
'WeightExhausted': {
'message_id': '[u8; 32]',
'remaining_weight': 'u64',
'required_weight': 'u64',
},
},
'EVM': {
'BalanceDeposit': ('AccountId', '[u8; 20]', '[u64; 4]'),
'BalanceWithdraw': ('AccountId', '[u8; 20]', '[u64; 4]'),
'Created': '[u8; 20]',
'CreatedFailed': '[u8; 20]',
'Executed': '[u8; 20]',
'ExecutedFailed': '[u8; 20]',
'Log': {
'address': '[u8; 20]',
'data': 'Bytes',
'topics': ['[u8; 32]'],
},
},
'ElectionsPhragmen': {
'CandidateSlashed': {
'amount': 'u128',
'candidate': 'AccountId',
},
'ElectionError': None,
'EmptyTerm': None,
'MemberKicked': {'member': 'AccountId'},
'NewTerm': {'new_members': [('AccountId', 'u128')]},
'Renounced': {'candidate': 'AccountId'},
'SeatHolderSlashed': {
'amount': 'u128',
'seat_holder': 'AccountId',
},
},
'Ethereum': {
'Executed': (
'[u8; 20]',
'[u8; 20]',
'[u8; 32]',
'scale_info::58',
),
},
'EvmAccounts': {'ClaimAccount': ('AccountId', '[u8; 20]')},
'Identity': {
'IdentityCleared': {'deposit': 'u128', 'who': 'AccountId'},
'IdentityKilled': {'deposit': 'u128', 'who': 'AccountId'},
'IdentitySet': {'who': 'AccountId'},
'JudgementGiven': {
'registrar_index': 'u32',
'target': 'AccountId',
},
'JudgementRequested': {
'registrar_index': 'u32',
'who': 'AccountId',
},
'JudgementUnrequested': {
'registrar_index': 'u32',
'who': 'AccountId',
},
'RegistrarAdded': {'registrar_index': 'u32'},
'SubIdentityAdded': {
'deposit': 'u128',
'main': 'AccountId',
'sub': 'AccountId',
},
'SubIdentityRemoved': {
'deposit': 'u128',
'main': 'AccountId',
'sub': 'AccountId',
},
'SubIdentityRevoked': {
'deposit': 'u128',
'main': 'AccountId',
'sub': 'AccountId',
},
},
'Indices': {
'IndexAssigned': {'index': 'u32', 'who': 'AccountId'},
'IndexFreed': {'index': 'u32'},
'IndexFrozen': {'index': 'u32', 'who': 'AccountId'},
},
'Multisig': {
'MultisigApproval': {
'approving': 'AccountId',
'call_hash': '[u8; 32]',
'multisig': 'AccountId',
'timepoint': 'scale_info::74',
},
'MultisigCancelled': {
'call_hash': '[u8; 32]',
'cancelling': 'AccountId',
'multisig': 'AccountId',
'timepoint': 'scale_info::74',
},
'MultisigExecuted': {
'approving': 'AccountId',
'call_hash': '[u8; 32]',
'multisig': 'AccountId',
'result': 'scale_info::37',
'timepoint': 'scale_info::74',
},
'NewMultisig': {
'approving': 'AccountId',
'call_hash': '[u8; 32]',
'multisig': 'AccountId',
},
},
'OrmlXcm': {
'Sent': {'message': ['scale_info::102'], 'to': 'scale_info::90'},
},
'ParachainSystem': {
'DownwardMessagesProcessed': {
'dmq_head': '[u8; 32]',
'weight_used': 'u64',
},
'DownwardMessagesReceived': {'count': 'u32'},
'UpgradeAuthorized': {'code_hash': '[u8; 32]'},
'ValidationFunctionApplied': {'relay_chain_block_num': 'u32'},
'ValidationFunctionDiscarded': None,
'ValidationFunctionStored': None,
},
'PolkadotXcm': {
'AssetsTrapped': (
'[u8; 32]',
'scale_info::90',
'scale_info::121',
),
'Attempted': {
'Complete': 'u64',
'Error': 'scale_info::86',
'Incomplete': ('u64', 'scale_info::86'),
},
'InvalidResponder': (
'scale_info::90',
'u64',
(None, 'scale_info::90'),
),
'InvalidResponderVersion': ('scale_info::90', 'u64'),
'Notified': ('u64', 'u8', 'u8'),
'NotifyDecodeFailed': ('u64', 'u8', 'u8'),
'NotifyDispatchError': ('u64', 'u8', 'u8'),
'NotifyOverweight': ('u64', 'u8', 'u8', 'u64', 'u64'),
'NotifyTargetMigrationFail': ('scale_info::126', 'u64'),
'NotifyTargetSendFail': (
'scale_info::90',
'u64',
'scale_info::86',
),
'ResponseReady': ('u64', 'scale_info::111'),
'ResponseTaken': 'u64',
'Sent': (
'scale_info::90',
'scale_info::90',
['scale_info::102'],
),
'SupportedVersionChanged': ('scale_info::90', 'u32'),
'UnexpectedResponse': ('scale_info::90', 'u64'),
'VersionChangeNotified': ('scale_info::90', 'u32'),
},
'Scheduler': {
'CallLookupFailed': {
'error': 'scale_info::69',
'id': (None, 'Bytes'),
'task': ('u32', 'u32'),
},
'Canceled': {'index': 'u32', 'when': 'u32'},
'Dispatched': {
'id': (None, 'Bytes'),
'result': 'scale_info::37',
'task': ('u32', 'u32'),
},
'Scheduled': {'index': 'u32', 'when': 'u32'},
},
'Session': {'NewSession': {'session_index': 'u32'}},
'Spambot': {
'ErrorSendingPing': ('scale_info::136', 'u32', 'u32', 'Bytes'),
'ErrorSendingPong': ('scale_info::136', 'u32', 'u32', 'Bytes'),
'PingSent': ('u32', 'u32', 'Bytes'),
'Pinged': ('u32', 'u32', 'Bytes'),
'PongSent': ('u32', 'u32', 'Bytes'),
'Ponged': ('u32', 'u32', 'Bytes', 'u32'),
'UnknownPong': ('u32', 'u32', 'Bytes'),
},
'System': {
'CodeUpdated': None,
'ExtrinsicFailed': {
'dispatch_error': 'scale_info::22',
'dispatch_info': 'scale_info::19',
},
'ExtrinsicSuccess': {'dispatch_info': 'scale_info::19'},
'KilledAccount': {'account': 'AccountId'},
'NewAccount': {'account': 'AccountId'},
'Remarked': {'hash': '[u8; 32]', 'sender': 'AccountId'},
},
'TechnicalCommittee': {
'Approved': {'proposal_hash': '[u8; 32]'},
'Closed': {
'no': 'u32',
'proposal_hash': '[u8; 32]',
'yes': 'u32',
},
'Disapproved': {'proposal_hash': '[u8; 32]'},
'Executed': {
'proposal_hash': '[u8; 32]',
'result': 'scale_info::37',
},
'MemberExecuted': {
'proposal_hash': '[u8; 32]',
'result': 'scale_info::37',
},
'Proposed': {
'account': 'AccountId',
'proposal_hash': '[u8; 32]',
'proposal_index': 'u32',
'threshold': 'u32',
},
'Voted': {
'account': 'AccountId',
'no': 'u32',
'proposal_hash': '[u8; 32]',
'voted': 'bool',
'yes': 'u32',
},
},
'TechnicalMembership': (
'MemberAdded',
'MemberRemoved',
'MembersSwapped',
'MembersReset',
'KeyChanged',
'Dummy',
),
'Tips': {
'NewTip': {'tip_hash': '[u8; 32]'},
'TipClosed': {
'payout': 'u128',
'tip_hash': '[u8; 32]',
'who': 'AccountId',
},
'TipClosing': {'tip_hash': '[u8; 32]'},
'TipRetracted': {'tip_hash': '[u8; 32]'},
'TipSlashed': {
'deposit': 'u128',
'finder': 'AccountId',
'tip_hash': '[u8; 32]',
},
},
'TransactionPayment': {
'TransactionFeePaid': {
'actual_fee': 'u128',
'tip': 'u128',
'who': 'AccountId',
},
},
'Treasury': {
'Awarded': {
'account': 'AccountId',
'award': 'u128',
'proposal_index': 'u32',
},
'Burnt': {'burnt_funds': 'u128'},
'Deposit': {'value': 'u128'},
'Proposed': {'proposal_index': 'u32'},
'Rejected': {'proposal_index': 'u32', 'slashed': 'u128'},
'Rollover': {'rollover_balance': 'u128'},
'SpendApproved': {
'amount': 'u128',
'beneficiary': 'AccountId',
'proposal_index': 'u32',
},
'Spending': {'budget_remaining': 'u128'},
},
'Utility': {
'BatchCompleted': None,
'BatchCompletedWithErrors': None,
'BatchInterrupted': {
'error': 'scale_info::22',
'index': 'u32',
},
'DispatchedAs': {'result': 'scale_info::37'},
'ItemCompleted': None,
'ItemFailed': {'error': 'scale_info::22'},
},
'Vesting': {
'VestingCompleted': {'account': 'AccountId'},
'VestingUpdated': {'account': 'AccountId', 'unvested': 'u128'},
},
'XTokens': {
'TransferredMultiAssets': {
'assets': ['scale_info::105'],
'dest': 'scale_info::90',
'fee': 'scale_info::105',
'sender': 'AccountId',
},
},
'XcmpQueue': {
'BadFormat': {'message_hash': (None, '[u8; 32]')},
'BadVersion': {'message_hash': (None, '[u8; 32]')},
'Fail': {
'error': 'scale_info::86',
'message_hash': (None, '[u8; 32]'),
'weight': 'u64',
},
'OverweightEnqueued': {
'index': 'u64',
'required': 'u64',
'sender': 'u32',
'sent_at': 'u32',
},
'OverweightServiced': {'index': 'u64', 'used': 'u64'},
'Success': {'message_hash': (None, '[u8; 32]'), 'weight': 'u64'},
'UpwardMessageSent': {'message_hash': (None, '[u8; 32]')},
'XcmpMessageSent': {'message_hash': (None, '[u8; 32]')},
},
},
'phase': {
'ApplyExtrinsic': 'u32',
'Finalization': None,
'Initialization': None,
},
'topics': ['[u8; 32]'],
},
]
EventCount
The number of events in the Events<T> list.
Python
result = substrate.query(
'System', 'EventCount', []
)
Return value
'u32'
EventTopics
Mapping between a topic (represented by T::Hash) and a vector of indexes
of events in the <Events<T>> list.
All topic vectors have deterministic storage locations depending on the topic. This allows light-clients to leverage the changes trie storage tracking mechanism and in case of changes fetch the list of events of interest.
The value has the type (T::BlockNumber, EventIndex) because if we used only just
the EventIndex then in case if the topic has the same contents on the next block
no notification will be triggered thus the event might be lost.
Python
result = substrate.query(
'System', 'EventTopics', ['[u8; 32]']
)
Return value
[('u32', 'u32')]
LastRuntimeUpgrade
Stores the spec_version and spec_name of when the last runtime upgrade happened.
Python
result = substrate.query(
'System', 'LastRuntimeUpgrade', []
)
Return value
{'spec_name': 'Str', 'spec_version': 'u32'}
UpgradedToU32RefCount
True if we have upgraded so that type RefCount is u32. False (default) if not.
Python
result = substrate.query(
'System', 'UpgradedToU32RefCount', []
)
Return value
'bool'
UpgradedToTripleRefCount
True if we have upgraded so that AccountInfo contains three types of RefCount. False
(default) if not.
Python
result = substrate.query(
'System', 'UpgradedToTripleRefCount', []
)
Return value
'bool'
ExecutionPhase
The execution phase of the block.
Python
result = substrate.query(
'System', 'ExecutionPhase', []
)
Return value
{'ApplyExtrinsic': 'u32', 'Finalization': None, 'Initialization': None}
Constants
BlockWeights
Block & extrinsics weights: base values and limits.
Value
{
'base_block': 5346284000,
'max_block': 2000000000000,
'per_class': {
'mandatory': {
'base_extrinsic': 86298000,
'max_extrinsic': None,
'max_total': None,
'reserved': None,
},
'normal': {
'base_extrinsic': 86298000,
'max_extrinsic': 1449913702000,
'max_total': 1500000000000,
'reserved': 0,
},
'operational': {
'base_extrinsic': 86298000,
'max_extrinsic': 1949913702000,
'max_total': 2000000000000,
'reserved': 500000000000,
},
},
}
Python
constant = substrate.get_constant('System', 'BlockWeights')
BlockLength
The maximum length of a block (in bytes).
Value
{'max': {'mandatory': 5242880, 'normal': 3932160, 'operational': 5242880}}
Python
constant = substrate.get_constant('System', 'BlockLength')
BlockHashCount
Maximum number of block number to block hash mappings to keep (oldest pruned first).
Value
2400
Python
constant = substrate.get_constant('System', 'BlockHashCount')
DbWeight
The weight of runtime database operations the runtime can invoke.
Value
{'read': 25000000, 'write': 100000000}
Python
constant = substrate.get_constant('System', 'DbWeight')
Version
Get the chain's current version.
Value
{
'apis': [
('0xdd718d5cc53262d4', 1),
('0xdf6acb689907609b', 4),
('0x37e397fc7c91f5e4', 1),
('0x40fe3ad401f8959a', 6),
('0xd2bc9897eed08f15', 3),
('0xf78b278be53f454c', 2),
('0xab3c0572291feb8b', 1),
('0xbc9d89904f5b923f', 1),
('0x68b66ba122c93fa7', 1),
('0xe65b00e46cedd0aa', 2),
('0x37c8bb1350a9a2a8', 1),
('0xea93e3f16f3d6962', 2),
('0x582211f65bb14b89', 4),
('0xbd78255d4feeea1f', 1),
],
'authoring_version': 1,
'impl_name': 'clover-mainnet',
'impl_version': 1,
'spec_name': 'clover-mainnet',
'spec_version': 25,
'state_version': 0,
'transaction_version': 1,
}
Python
constant = substrate.get_constant('System', 'Version')
SS58Prefix
The designated SS85 prefix of this chain.
This replaces the "ss58Format" property declared in the chain spec. Reason is that the runtime should know about the prefix in order to make use of it as an identifier of the chain.
Value
128
Python
constant = substrate.get_constant('System', 'SS58Prefix')
Errors
InvalidSpecName
The name of specification does not match between the current runtime and the new runtime.
SpecVersionNeedsToIncrease
The specification version is not allowed to decrease between the current runtime and the new runtime.
FailedToExtractRuntimeVersion
Failed to extract the runtime version from the new runtime.
Either calling Core_version or decoding RuntimeVersion failed.
NonDefaultComposite
Suicide called when the account has non-default composite data.
NonZeroRefCount
There is a non-zero reference count preventing the account from being purged.
CallFiltered
The origin filter prevent the call to be dispatched.
RandomnessCollectiveFlip
Storage functions
RandomMaterial
Series of block headers from the last 81 blocks that acts as random seed material. This
is arranged as a ring buffer with block_number % 81 being the index into the Vec of
the oldest hash.
Python
result = substrate.query(
'RandomnessCollectiveFlip', 'RandomMaterial', []
)
Return value
['[u8; 32]']
Timestamp
Calls
set
Set the current time.
This call should be invoked exactly once per block. It will panic at the finalization phase, if this call hasn't been invoked by that time.
The timestamp should be greater than the previous one by the amount specified by
MinimumPeriod.
The dispatch origin for this call must be Inherent.
# <weight>
- O(1) (Note that implementations of OnTimestampSet must also be O(1))
- 1 storage read and 1 storage mutation (codec O(1)). (because of DidUpdate::take in
on_finalize)
- 1 event handler on_timestamp_set. Must be O(1).
# </weight>
Attributes
| Name | Type |
|---|---|
| now | T::Moment |
Python
call = substrate.compose_call(
'Timestamp', 'set', {'now': 'u64'}
)
Storage functions
Now
Current time for the current block.
Python
result = substrate.query(
'Timestamp', 'Now', []
)
Return value
'u64'
DidUpdate
Did the timestamp get updated in this block?
Python
result = substrate.query(
'Timestamp', 'DidUpdate', []
)
Return value
'bool'
Constants
MinimumPeriod
The minimum period between blocks. Beware that this is different to the expected period that the block production apparatus provides. Your chosen consensus system will generally work with this to determine a sensible block time. e.g. For Aura, it will be double this period on default settings.
Value
3000
Python
constant = substrate.get_constant('Timestamp', 'MinimumPeriod')
Indices
Calls
claim
Assign an previously unassigned index.
Payment: Deposit is reserved from the sender account.
The dispatch origin for this call must be Signed.
index: the index to be claimed. This must not be in use.
Emits IndexAssigned if successful.
# <weight>
- O(1).
- One storage mutation (codec O(1)).
- One reserve operation.
- One event.
- DB Weight: 1 Read/Write (Accounts) # </weight>
Attributes
| Name | Type |
|---|---|
| index | T::AccountIndex |
Python
call = substrate.compose_call(
'Indices', 'claim', {'index': 'u32'}
)
transfer
Assign an index already owned by the sender to another account. The balance reservation is effectively transferred to the new account.
The dispatch origin for this call must be Signed.
index: the index to be re-assigned. This must be owned by the sender.new: the new owner of the index. This function is a no-op if it is equal to sender.
Emits IndexAssigned if successful.
# <weight>
- O(1).
- One storage mutation (codec O(1)).
- One transfer operation.
- One event.
- DB Weight:
- Reads: Indices Accounts, System Account (recipient)
- Writes: Indices Accounts, System Account (recipient) # </weight>
Attributes
| Name | Type |
|---|---|
| new | T::AccountId |
| index | T::AccountIndex |
Python
call = substrate.compose_call(
'Indices', 'transfer', {'index': 'u32', 'new': 'AccountId'}
)
free
Free up an index owned by the sender.
Payment: Any previous deposit placed for the index is unreserved in the sender account.
The dispatch origin for this call must be Signed and the sender must own the index.
index: the index to be freed. This must be owned by the sender.
Emits IndexFreed if successful.
# <weight>
- O(1).
- One storage mutation (codec O(1)).
- One reserve operation.
- One event.
- DB Weight: 1 Read/Write (Accounts) # </weight>
Attributes
| Name | Type |
|---|---|
| index | T::AccountIndex |
Python
call = substrate.compose_call(
'Indices', 'free', {'index': 'u32'}
)
force_transfer
Force an index to an account. This doesn't require a deposit. If the index is already held, then any deposit is reimbursed to its current owner.
The dispatch origin for this call must be Root.
index: the index to be (re-)assigned.new: the new owner of the index. This function is a no-op if it is equal to sender.freeze: if set totrue, will freeze the index so it cannot be transferred.
Emits IndexAssigned if successful.
# <weight>
- O(1).
- One storage mutation (codec O(1)).
- Up to one reserve operation.
- One event.
- DB Weight:
- Reads: Indices Accounts, System Account (original owner)
- Writes: Indices Accounts, System Account (original owner) # </weight>
Attributes
| Name | Type |
|---|---|
| new | T::AccountId |
| index | T::AccountIndex |
| freeze | bool |
Python
call = substrate.compose_call(
'Indices', 'force_transfer', {
'freeze': 'bool',
'index': 'u32',
'new': 'AccountId',
}
)
freeze
Freeze an index so it will always point to the sender account. This consumes the deposit.
The dispatch origin for this call must be Signed and the signing account must have a
non-frozen account index.
index: the index to be frozen in place.
Emits IndexFrozen if successful.
# <weight>
- O(1).
- One storage mutation (codec O(1)).
- Up to one slash operation.
- One event.
- DB Weight: 1 Read/Write (Accounts) # </weight>
Attributes
| Name | Type |
|---|---|
| index | T::AccountIndex |
Python
call = substrate.compose_call(
'Indices', 'freeze', {'index': 'u32'}
)
Events
IndexAssigned
A account index was assigned.
Attributes
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| index | T::AccountIndex |
u32 |
IndexFreed
A account index has been freed up (unassigned).
Attributes
| Name | Type | Composition |
|---|---|---|
| index | T::AccountIndex |
u32 |
IndexFrozen
A account index has been frozen to its current account ID.
Attributes
| Name | Type | Composition |
|---|---|---|
| index | T::AccountIndex |
u32 |
| who | T::AccountId |
AccountId |
Storage functions
Accounts
The lookup from index to account.
Python
result = substrate.query(
'Indices', 'Accounts', ['u32']
)
Return value
('AccountId', 'u128', 'bool')
Constants
Deposit
The deposit needed for reserving an index.
Value
1000000000000000000
Python
constant = substrate.get_constant('Indices', 'Deposit')
Errors
NotAssigned
The index was not already assigned.
NotOwner
The index is assigned to another account.
InUse
The index was not available.
NotTransfer
The source and destination accounts are identical.
Permanent
The index is permanent and may not be freed/changed.
Balances
Calls
transfer
Transfer some liquid free balance to another account.
transfer will set the FreeBalance of the sender and receiver.
If the sender's account is below the existential deposit as a result
of the transfer, the account will be reaped.
The dispatch origin for this call must be Signed by the transactor.
# <weight> - Dependent on arguments but not critical, given proper implementations for input config types. See related functions below. - It contains a limited number of reads and writes internally and no complex computation.
Related functions:
ensure_can_withdrawis always called internally but has a bounded complexity.- Transferring balances to accounts that did not exist before will cause
T::OnNewAccount::on_new_accountto be called. - Removing enough funds from an account will trigger
T::DustRemoval::on_unbalanced. transfer_keep_aliveworks the same way astransfer, but has an additional check that the transfer will not kill the origin account.
- Origin account is already in memory, so no DB operations for them. # </weight>
Attributes
| Name | Type |
|---|---|
| dest | <T::Lookup as StaticLookup>::Source |
| value | T::Balance |
Python
call = substrate.compose_call(
'Balances', 'transfer', {
'dest': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
'value': 'u128',
}
)
set_balance
Set the balances of a given account.
This will alter FreeBalance and ReservedBalance in storage. it will
also alter the total issuance of the system (TotalIssuance) appropriately.
If the new free or reserved balance is below the existential deposit,
it will reset the account nonce (frame_system::AccountNonce).
The dispatch origin for this call is root.
Attributes
| Name | Type |
|---|---|
| who | <T::Lookup as StaticLookup>::Source |
| new_free | T::Balance |
| new_reserved | T::Balance |
Python
call = substrate.compose_call(
'Balances', 'set_balance', {
'new_free': 'u128',
'new_reserved': 'u128',
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
}
)
force_transfer
Exactly as transfer, except the origin must be root and the source account may be
specified.
# <weight>
- Same as transfer, but additional read and write because the source account is not
assumed to be in the overlay.
# </weight>
Attributes
| Name | Type |
|---|---|
| source | <T::Lookup as StaticLookup>::Source |
| dest | <T::Lookup as StaticLookup>::Source |
| value | T::Balance |
Python
call = substrate.compose_call(
'Balances', 'force_transfer', {
'dest': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
'source': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
'value': 'u128',
}
)
transfer_keep_alive
Same as the [transfer] call, but with a check that the transfer will not kill the
origin account.
99% of the time you want [transfer] instead.
Attributes
| Name | Type |
|---|---|
| dest | <T::Lookup as StaticLookup>::Source |
| value | T::Balance |
Python
call = substrate.compose_call(
'Balances', 'transfer_keep_alive', {
'dest': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
'value': 'u128',
}
)
transfer_all
Transfer the entire transferable balance from the caller account.
NOTE: This function only attempts to transfer transferable balances. This means that
any locked, reserved, or existential deposits (when keep_alive is true), will not be
transferred by this function. To ensure that this function results in a killed account,
you might need to prepare the account by removing any reference counters, storage
deposits, etc...
The dispatch origin of this call must be Signed.
dest: The recipient of the transfer.keep_alive: A boolean to determine if thetransfer_alloperation should send all of the funds the account has, causing the sender account to be killed (false), or transfer everything except at least the existential deposit, which will guarantee to keep the sender account alive (true). # <weight>- O(1). Just like transfer, but reading the user's transferable balance first. #</weight>
Attributes
| Name | Type |
|---|---|
| dest | <T::Lookup as StaticLookup>::Source |
| keep_alive | bool |
Python
call = substrate.compose_call(
'Balances', 'transfer_all', {
'dest': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
'keep_alive': 'bool',
}
)
force_unreserve
Unreserve some balance from a user by force.
Can only be called by ROOT.
Attributes
| Name | Type |
|---|---|
| who | <T::Lookup as StaticLookup>::Source |
| amount | T::Balance |
Python
call = substrate.compose_call(
'Balances', 'force_unreserve', {
'amount': 'u128',
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
}
)
Events
Endowed
An account was created with some free balance.
Attributes
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
| free_balance | T::Balance |
u128 |
DustLost
An account was removed whose balance was non-zero but below ExistentialDeposit, resulting in an outright loss.
Attributes
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
Transfer
Transfer succeeded.
Attributes
| Name | Type | Composition |
|---|---|---|
| from | T::AccountId |
AccountId |
| to | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
BalanceSet
A balance was set by root.
Attributes
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| free | T::Balance |
u128 |
| reserved | T::Balance |
u128 |
Reserved
Some balance was reserved (moved from free to reserved).
Attributes
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
Unreserved
Some balance was unreserved (moved from reserved to free).
Attributes
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
ReserveRepatriated
Some balance was moved from the reserve of the first account to the second account. Final argument indicates the destination balance type.
Attributes
| Name | Type | Composition |
|---|---|---|
| from | T::AccountId |
AccountId |
| to | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
| destination_status | Status |
('Free', 'Reserved') |
Deposit
Some amount was deposited (e.g. for transaction fees).
Attributes
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
Withdraw
Some amount was withdrawn from the account (e.g. for transaction fees).
Attributes
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
Slashed
Some amount was removed from the account (e.g. for misbehavior).
Attributes
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
Storage functions
TotalIssuance
The total units issued in the system.
Python
result = substrate.query(
'Balances', 'TotalIssuance', []
)
Return value
'u128'
Account
The Balances pallet example of storing the balance of an account.
# Example
nocompile
impl pallet_balances::Config for Runtime {
type AccountStore = StorageMapShim<Self::Account<Runtime>, frame_system::Provider<Runtime>, AccountId, Self::AccountData<Balance>>
}
You can also store the balance of an account in the System pallet.
# Example
nocompile
impl pallet_balances::Config for Runtime {
type AccountStore = System
}
But this comes with tradeoffs, storing account balances in the system pallet stores
frame_system data alongside the account data contrary to storing account balances in the
Balances pallet, which uses a StorageMap to store balances data only.
NOTE: This is only used in the case that this pallet is used to store balances.
Python
result = substrate.query(
'Balances', 'Account', ['AccountId']
)
Return value
{
'fee_frozen': 'u128',
'free': 'u128',
'misc_frozen': 'u128',
'reserved': 'u128',
}
Locks
Any liquidity locks on some account balances. NOTE: Should only be accessed when setting, changing and freeing a lock.
Python
result = substrate.query(
'Balances', 'Locks', ['AccountId']
)
Return value
[{'amount': 'u128', 'id': '[u8; 8]', 'reasons': ('Fee', 'Misc', 'All')}]
Reserves
Named reserves on some account balances.
Python
result = substrate.query(
'Balances', 'Reserves', ['AccountId']
)
Return value
[{'amount': 'u128', 'id': '[u8; 8]'}]
StorageVersion
Storage version of the pallet.
This is set to v2.0.0 for new networks.
Python
result = substrate.query(
'Balances', 'StorageVersion', []
)
Return value
('V1_0_0', 'V2_0_0')
Constants
ExistentialDeposit
The minimum amount required to keep an account open.
Value
0
Python
constant = substrate.get_constant('Balances', 'ExistentialDeposit')
MaxLocks
The maximum number of locks that should exist on an account. Not strictly enforced, but used for weight estimation.
Value
50
Python
constant = substrate.get_constant('Balances', 'MaxLocks')
MaxReserves
The maximum number of named reserves that can exist on an account.
Value
50
Python
constant = substrate.get_constant('Balances', 'MaxReserves')
Errors
VestingBalance
Vesting balance too high to send value
LiquidityRestrictions
Account liquidity restrictions prevent withdrawal
InsufficientBalance
Balance too low to send value
ExistentialDeposit
Value too low to create account due to existential deposit
KeepAlive
Transfer/payment would kill account
ExistingVestingSchedule
A vesting schedule already exists for this account
DeadAccount
Beneficiary account must pre-exist
TooManyReserves
Number of named reserves exceed MaxReserves
ParachainSystem
Calls
set_validation_data
Set the current validation data.
This should be invoked exactly once per block. It will panic at the finalization phase if the call was not invoked.
The dispatch origin for this call must be Inherent
As a side effect, this function upgrades the current validation function if the appropriate time has come.
Attributes
| Name | Type |
|---|---|
| data | ParachainInherentData |
Python
call = substrate.compose_call(
'ParachainSystem', 'set_validation_data', {
'data': {
'downward_messages': [
{
'msg': 'Bytes',
'sent_at': 'u32',
},
],
'horizontal_messages': 'scale_info::195',
'relay_chain_state': {
'trie_nodes': 'scale_info::179',
},
'validation_data': {
'max_pov_size': 'u32',
'parent_head': 'Bytes',
'relay_parent_number': 'u32',
'relay_parent_storage_root': '[u8; 32]',
},
},
}
)
sudo_send_upward_message
Attributes
| Name | Type |
|---|---|
| message | UpwardMessage |
Python
call = substrate.compose_call(
'ParachainSystem', 'sudo_send_upward_message', {'message': 'Bytes'}
)
authorize_upgrade
Attributes
| Name | Type |
|---|---|
| code_hash | T::Hash |
Python
call = substrate.compose_call(
'ParachainSystem', 'authorize_upgrade', {'code_hash': '[u8; 32]'}
)
enact_authorized_upgrade
Attributes
| Name | Type |
|---|---|
| code | Vec<u8> |
Python
call = substrate.compose_call(
'ParachainSystem', 'enact_authorized_upgrade', {'code': 'Bytes'}
)
Events
ValidationFunctionStored
The validation function has been scheduled to apply.
Attributes
No attributes
ValidationFunctionApplied
The validation function was applied as of the contained relay chain block number.
Attributes
| Name | Type | Composition |
|---|---|---|
| relay_chain_block_num | RelayChainBlockNumber |
u32 |
ValidationFunctionDiscarded
The relay-chain aborted the upgrade process.
Attributes
No attributes
UpgradeAuthorized
An upgrade has been authorized.
Attributes
| Name | Type | Composition |
|---|---|---|
| code_hash | T::Hash |
[u8; 32] |
DownwardMessagesReceived
Some downward messages have been received and will be processed.
Attributes
| Name | Type | Composition |
|---|---|---|
| count | u32 |
u32 |
DownwardMessagesProcessed
Downward messages were processed using the given weight.
Attributes
| Name | Type | Composition |
|---|---|---|
| weight_used | Weight |
u64 |
| dmq_head | relay_chain::Hash |
[u8; 32] |
Storage functions
PendingValidationCode
In case of a scheduled upgrade, this storage field contains the validation code to be applied.
As soon as the relay chain gives us the go-ahead signal, we will overwrite the :code
which will result the next block process with the new validation code. This concludes the upgrade process.
Python
result = substrate.query(
'ParachainSystem', 'PendingValidationCode', []
)
Return value
'Bytes'
NewValidationCode
Validation code that is set by the parachain and is to be communicated to collator and consequently the relay-chain.
This will be cleared in on_initialize of each new block if no other pallet already set
the value.
Python
result = substrate.query(
'ParachainSystem', 'NewValidationCode', []
)
Return value
'Bytes'
ValidationData
The [PersistedValidationData] set for this block.
This value is expected to be set only once per block and it's never stored
in the trie.
Python
result = substrate.query(
'ParachainSystem', 'ValidationData', []
)
Return value
{
'max_pov_size': 'u32',
'parent_head': 'Bytes',
'relay_parent_number': 'u32',
'relay_parent_storage_root': '[u8; 32]',
}
DidSetValidationCode
Were the validation data set to notify the relay chain?
Python
result = substrate.query(
'ParachainSystem', 'DidSetValidationCode', []
)
Return value
'bool'
LastRelayChainBlockNumber
The relay chain block number associated with the last parachain block.
Python
result = substrate.query(
'ParachainSystem', 'LastRelayChainBlockNumber', []
)
Return value
'u32'
UpgradeRestrictionSignal
An option which indicates if the relay-chain restricts signalling a validation code upgrade.
In other words, if this is Some and [NewValidationCode] is Some then the produced
candidate will be invalid.
This storage item is a mirror of the corresponding value for the current parachain from the relay-chain. This value is ephemeral which means it doesn't hit the storage. This value is set after the inherent.
Python
result = substrate.query(
'ParachainSystem', 'UpgradeRestrictionSignal', []
)
Return value
(None, ('Present', ))
RelayStateProof
The state proof for the last relay parent block.
This field is meant to be updated each block with the validation data inherent. Therefore,
before processing of the inherent, e.g. in on_initialize this data may be stale.
This data is also absent from the genesis.
Python
result = substrate.query(
'ParachainSystem', 'RelayStateProof', []
)
Return value
{'trie_nodes': 'scale_info::179'}
RelevantMessagingState
The snapshot of some state related to messaging relevant to the current parachain as per the relay parent.
This field is meant to be updated each block with the validation data inherent. Therefore,
before processing of the inherent, e.g. in on_initialize this data may be stale.
This data is also absent from the genesis.
Python
result = substrate.query(
'ParachainSystem', 'RelevantMessagingState', []
)
Return value
{
'dmq_mqc_head': '[u8; 32]',
'egress_channels': [
(
'u32',
{
'max_capacity': 'u32',
'max_message_size': 'u32',
'max_total_size': 'u32',
'mqc_head': (None, '[u8; 32]'),
'msg_count': 'u32',
'total_size': 'u32',
},
),
],
'ingress_channels': [
(
'u32',
{
'max_capacity': 'u32',
'max_message_size': 'u32',
'max_total_size': 'u32',
'mqc_head': (None, '[u8; 32]'),
'msg_count': 'u32',
'total_size': 'u32',
},
),
],
'relay_dispatch_queue_size': ('u32', 'u32'),
}
HostConfiguration
The parachain host configuration that was obtained from the relay parent.
This field is meant to be updated each block with the validation data inherent. Therefore,
before processing of the inherent, e.g. in on_initialize this data may be stale.
This data is also absent from the genesis.
Python
result = substrate.query(
'ParachainSystem', 'HostConfiguration', []
)
Return value
{
'hrmp_max_message_num_per_candidate': 'u32',
'max_code_size': 'u32',
'max_head_data_size': 'u32',
'max_upward_message_num_per_candidate': 'u32',
'max_upward_message_size': 'u32',
'max_upward_queue_count': 'u32',
'max_upward_queue_size': 'u32',
'validation_upgrade_cooldown': 'u32',
'validation_upgrade_delay': 'u32',
}
LastDmqMqcHead
The last downward message queue chain head we have observed.
This value is loaded before and saved after processing inbound downward messages carried by the system inherent.
Python
result = substrate.query(
'ParachainSystem', 'LastDmqMqcHead', []
)
Return value
'[u8; 32]'
LastHrmpMqcHeads
The message queue chain heads we have observed per each channel incoming channel.
This value is loaded before and saved after processing inbound downward messages carried by the system inherent.
Python
result = substrate.query(
'ParachainSystem', 'LastHrmpMqcHeads', []
)
Return value
'scale_info::186'
ProcessedDownwardMessages
Number of downward messages processed in a block.
This will be cleared in on_initialize of each new block.
Python
result = substrate.query(
'ParachainSystem', 'ProcessedDownwardMessages', []
)
Return value
'u32'
HrmpWatermark
HRMP watermark that was set in a block.
This will be cleared in on_initialize of each new block.
Python
result = substrate.query(
'ParachainSystem', 'HrmpWatermark', []
)
Return value
'u32'
HrmpOutboundMessages
HRMP messages that were sent in a block.
This will be cleared in on_initialize of each new block.
Python
result = substrate.query(
'ParachainSystem', 'HrmpOutboundMessages', []
)
Return value
[{'data': 'Bytes', 'recipient': 'u32'}]
UpwardMessages
Upward messages that were sent in a block.
This will be cleared in on_initialize of each new block.
Python
result = substrate.query(
'ParachainSystem', 'UpwardMessages', []
)
Return value
['Bytes']
PendingUpwardMessages
Upward messages that are still pending and not yet send to the relay chain.
Python
result = substrate.query(
'ParachainSystem', 'PendingUpwardMessages', []
)
Return value
['Bytes']
AnnouncedHrmpMessagesPerCandidate
The number of HRMP messages we observed in on_initialize and thus used that number for
announcing the weight of on_initialize and on_finalize.
Python
result = substrate.query(
'ParachainSystem', 'AnnouncedHrmpMessagesPerCandidate', []
)
Return value
'u32'
ReservedXcmpWeightOverride
The weight we reserve at the beginning of the block for processing XCMP messages. This overrides the amount set in the Config trait.
Python
result = substrate.query(
'ParachainSystem', 'ReservedXcmpWeightOverride', []
)
Return value
'u64'
ReservedDmpWeightOverride
The weight we reserve at the beginning of the block for processing DMP messages. This overrides the amount set in the Config trait.
Python
result = substrate.query(
'ParachainSystem', 'ReservedDmpWeightOverride', []
)
Return value
'u64'
AuthorizedUpgrade
The next authorized upgrade, if there is one.
Python
result = substrate.query(
'ParachainSystem', 'AuthorizedUpgrade', []
)
Return value
'[u8; 32]'
CustomValidationHeadData
A custom head data that should be returned as result of validate_block.
See [Pallet::set_custom_validation_head_data] for more information.
Python
result = substrate.query(
'ParachainSystem', 'CustomValidationHeadData', []
)
Return value
'Bytes'
Errors
OverlappingUpgrades
Attempt to upgrade validation function while existing upgrade pending
ProhibitedByPolkadot
Polkadot currently prohibits this parachain from upgrading its validation function
TooBig
The supplied validation function has compiled into a blob larger than Polkadot is willing to run
ValidationDataNotAvailable
The inherent which supplies the validation data did not run this block
HostConfigurationNotAvailable
The inherent which supplies the host configuration did not run this block
NotScheduled
No validation function upgrade is currently scheduled.
NothingAuthorized
No code upgrade has been authorized.
Unauthorized
The given code upgrade has not been authorized.
TransactionPayment
Events
TransactionFeePaid
A transaction fee actual_fee, of which tip was added to the minimum inclusion fee,
has been paid by who.
Attributes
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| actual_fee | BalanceOf<T> |
u128 |
| tip | BalanceOf<T> |
u128 |
Storage functions
NextFeeMultiplier
Python
result = substrate.query(
'TransactionPayment', 'NextFeeMultiplier', []
)
Return value
'u128'
StorageVersion
Python
result = substrate.query(
'TransactionPayment', 'StorageVersion', []
)
Return value
('V1Ancient', 'V2')
Constants
OperationalFeeMultiplier
A fee mulitplier for Operational extrinsics to compute "virtual tip" to boost their
priority
This value is multipled by the final_fee to obtain a "virtual tip" that is later
added to a tip component in regular priority calculations.
It means that a Normal transaction can front-run a similarly-sized Operational
extrinsic (with no tip), by including a tip value greater than the virtual tip.
``rust,ignore
// ForNormal`
let priority = priority_calc(tip);
// For Operational
let virtual_tip = (inclusion_fee + tip) * OperationalFeeMultiplier;
let priority = priority_calc(tip + virtual_tip);
```
Note that since we use final_fee the multiplier applies also to the regular tip
sent with the transaction. So, not only does the transaction get a priority bump based
on the inclusion_fee, but we also amplify the impact of tips applied to Operational
transactions.
Value
5
Python
constant = substrate.get_constant('TransactionPayment', 'OperationalFeeMultiplier')
ParachainInfo
Storage functions
ParachainId
Python
result = substrate.query(
'ParachainInfo', 'ParachainId', []
)
Return value
'u32'
Authorship
Calls
set_uncles
Provide a set of uncles.
Attributes
| Name | Type |
|---|---|
| new_uncles | Vec<T::Header> |
Python
call = substrate.compose_call(
'Authorship', 'set_uncles', {
'new_uncles': [
{
'digest': {
'logs': [
{
'Consensus': (
'[u8; 4]',
'Bytes',
),
'Other': 'Bytes',
None: None,
'PreRuntime': (
'[u8; 4]',
'Bytes',
),
'RuntimeEnvironmentUpdated': None,
'Seal': (
'[u8; 4]',
'Bytes',
),
},
],
},
'extrinsics_root': '[u8; 32]',
'number': 'u32',
'parent_hash': '[u8; 32]',
'state_root': '[u8; 32]',
},
],
}
)
Storage functions
Uncles
Uncles
Python
result = substrate.query(
'Authorship', 'Uncles', []
)
Return value
[{'InclusionHeight': 'u32', 'Uncle': ('[u8; 32]', (None, 'AccountId'))}]
Author
Author of current block.
Python
result = substrate.query(
'Authorship', 'Author', []
)
Return value
'AccountId'
DidSetUncles
Whether uncles were already set in this block.
Python
result = substrate.query(
'Authorship', 'DidSetUncles', []
)
Return value
'bool'
Constants
UncleGenerations
The number of blocks back we should accept uncles.
This means that we will deal with uncle-parents that are
UncleGenerations + 1 before now.
Value
0
Python
constant = substrate.get_constant('Authorship', 'UncleGenerations')
Errors
InvalidUncleParent
The uncle parent not in the chain.
UnclesAlreadySet
Uncles already set in the block.
TooManyUncles
Too many uncles.
GenesisUncle
The uncle is genesis.
TooHighUncle
The uncle is too high in chain.
UncleAlreadyIncluded
The uncle is already included.
OldUncle
The uncle isn't recent enough to be included.
CollatorSelection
Calls
set_invulnerables
Set the list of invulnerable (fixed) collators.
Attributes
| Name | Type |
|---|---|
| new | Vec<T::AccountId> |
Python
call = substrate.compose_call(
'CollatorSelection', 'set_invulnerables', {'new': ['AccountId']}
)
set_desired_candidates
Set the ideal number of collators (not including the invulnerables). If lowering this number, then the number of running collators could be higher than this figure. Aside from that edge case, there should be no other way to have more collators than the desired number.
Attributes
| Name | Type |
|---|---|
| max | u32 |
Python
call = substrate.compose_call(
'CollatorSelection', 'set_desired_candidates', {'max': 'u32'}
)
set_candidacy_bond
Set the candidacy bond amount.
Attributes
| Name | Type |
|---|---|
| bond | BalanceOf<T> |
Python
call = substrate.compose_call(
'CollatorSelection', 'set_candidacy_bond', {'bond': 'u128'}
)
register_as_candidate
Register this account as a collator candidate. The account must (a) already have
registered session keys and (b) be able to reserve the CandidacyBond.
This call is not available to Invulnerable collators.
Attributes
No attributes
Python
call = substrate.compose_call(
'CollatorSelection', 'register_as_candidate', {}
)
leave_intent
Deregister origin as a collator candidate. Note that the collator can only leave on
session change. The CandidacyBond will be unreserved immediately.
This call will fail if the total number of candidates would drop below MinCandidates.
This call is not available to Invulnerable collators.
Attributes
No attributes
Python
call = substrate.compose_call(
'CollatorSelection', 'leave_intent', {}
)
Events
NewInvulnerables
Attributes
| Name | Type | Composition |
|---|---|---|
| invulnerables | Vec<T::AccountId> |
['AccountId'] |
NewDesiredCandidates
Attributes
| Name | Type | Composition |
|---|---|---|
| desired_candidates | u32 |
u32 |
NewCandidacyBond
Attributes
| Name | Type | Composition |
|---|---|---|
| bond_amount | BalanceOf<T> |
u128 |
CandidateAdded
Attributes
| Name | Type | Composition |
|---|---|---|
| account_id | T::AccountId |
AccountId |
| deposit | BalanceOf<T> |
u128 |
CandidateRemoved
Attributes
| Name | Type | Composition |
|---|---|---|
| account_id | T::AccountId |
AccountId |
Storage functions
Invulnerables
The invulnerable, fixed collators.
Python
result = substrate.query(
'CollatorSelection', 'Invulnerables', []
)
Return value
['AccountId']
Candidates
The (community, limited) collation candidates.
Python
result = substrate.query(
'CollatorSelection', 'Candidates', []
)
Return value
[{'deposit': 'u128', 'who': 'AccountId'}]
LastAuthoredBlock
Last block authored by collator.
Python
result = substrate.query(
'CollatorSelection', 'LastAuthoredBlock', ['AccountId']
)
Return value
'u32'
DesiredCandidates
Desired number of candidates.
This should ideally always be less than [Config::MaxCandidates] for weights to be correct.
Python
result = substrate.query(
'CollatorSelection', 'DesiredCandidates', []
)
Return value
'u32'
CandidacyBond
Fixed amount to deposit to become a collator.
When a collator calls leave_intent they immediately receive the deposit back.
Python
result = substrate.query(
'CollatorSelection', 'CandidacyBond', []
)
Return value
'u128'
Errors
TooManyCandidates
Too many candidates
TooFewCandidates
Too few candidates
Unknown
Unknown error
Permission
Permission issue
AlreadyCandidate
User is already a candidate
NotCandidate
User is not a candidate
TooManyInvulnerables
Too many invulnerables
AlreadyInvulnerable
User is already an Invulnerable
NoAssociatedValidatorId
Account has no associated validator ID
ValidatorNotRegistered
Validator ID is not yet registered
Session
Calls
set_keys
Sets the session key(s) of the function caller to keys.
Allows an account to set its session key prior to becoming a validator.
This doesn't take effect until the next session.
The dispatch origin of this function must be signed.
# <weight>
- Complexity: O(1). Actual cost depends on the number of length of
T::Keys::key_ids() which is fixed.
- DbReads: origin account, T::ValidatorIdOf, NextKeys
- DbWrites: origin account, NextKeys
- DbReads per key id: KeyOwner
- DbWrites per key id: KeyOwner
# </weight>
Attributes
| Name | Type |
|---|---|
| keys | T::Keys |
| proof | Vec<u8> |
Python
call = substrate.compose_call(
'Session', 'set_keys', {'keys': {'aura': '[u8; 32]'}, 'proof': 'Bytes'}
)
purge_keys
Removes any session key(s) of the function caller.
This doesn't take effect until the next session.
The dispatch origin of this function must be Signed and the account must be either be convertible to a validator ID using the chain's typical addressing system (this usually means being a controller account) or directly convertible into a validator ID (which usually means being a stash account).
# <weight>
- Complexity: O(1) in number of key types. Actual cost depends on the number of length
of T::Keys::key_ids() which is fixed.
- DbReads: T::ValidatorIdOf, NextKeys, origin account
- DbWrites: NextKeys, origin account
- DbWrites per key id: KeyOwner
# </weight>
Attributes
No attributes
Python
call = substrate.compose_call(
'Session', 'purge_keys', {}
)
Events
NewSession
New session has happened. Note that the argument is the session index, not the block number as the type might suggest.
Attributes
| Name | Type | Composition |
|---|---|---|
| session_index | SessionIndex |
u32 |
Storage functions
Validators
The current set of validators.
Python
result = substrate.query(
'Session', 'Validators', []
)
Return value
['AccountId']
CurrentIndex
Current index of the session.
Python
result = substrate.query(
'Session', 'CurrentIndex', []
)
Return value
'u32'
QueuedChanged
True if the underlying economic identities or weighting behind the validators has changed in the queued validator set.
Python
result = substrate.query(
'Session', 'QueuedChanged', []
)
Return value
'bool'
QueuedKeys
The queued keys for the next session. When the next session begins, these keys will be used to determine the validator's session keys.
Python
result = substrate.query(
'Session', 'QueuedKeys', []
)
Return value
[('AccountId', {'aura': '[u8; 32]'})]
DisabledValidators
Indices of disabled validators.
The vec is always kept sorted so that we can find whether a given validator is
disabled using binary search. It gets cleared when on_session_ending returns
a new set of identities.
Python
result = substrate.query(
'Session', 'DisabledValidators', []
)
Return value
['u32']
NextKeys
The next session keys for a validator.
Python
result = substrate.query(
'Session', 'NextKeys', ['AccountId']
)
Return value
{'aura': '[u8; 32]'}
KeyOwner
The owner of a key. The key is the KeyTypeId + the encoded key.
Python
result = substrate.query(
'Session', 'KeyOwner', [('[u8; 4]', 'Bytes')]
)
Return value
'AccountId'
Errors
InvalidProof
Invalid ownership proof.
NoAssociatedValidatorId
No associated validator ID for account.
DuplicatedKey
Registered duplicate key.
NoKeys
No keys are associated with this account.
NoAccount
Key setting account is not live, so it's impossible to associate keys.
Aura
AuraExt
Democracy
Calls
propose
Propose a sensitive action to be taken.
The dispatch origin of this call must be Signed and the sender must have funds to cover the deposit.
proposal_hash: The hash of the proposal preimage.value: The amount of deposit (must be at leastMinimumDeposit).
Emits Proposed.
Weight: O(p)
Attributes
| Name | Type |
|---|---|
| proposal_hash | T::Hash |
| value | BalanceOf<T> |
Python
call = substrate.compose_call(
'Democracy', 'propose', {
'proposal_hash': '[u8; 32]',
'value': 'u128',
}
)
second
Signals agreement with a particular proposal.
The dispatch origin of this call must be Signed and the sender must have funds to cover the deposit, equal to the original deposit.
proposal: The index of the proposal to second.seconds_upper_bound: an upper bound on the current number of seconds on this proposal. Extrinsic is weighted according to this value with no refund.
Weight: O(S) where S is the number of seconds a proposal already has.
Attributes
| Name | Type |
|---|---|
| proposal | PropIndex |
| seconds_upper_bound | u32 |
Python
call = substrate.compose_call(
'Democracy', 'second', {
'proposal': 'u32',
'seconds_upper_bound': 'u32',
}
)
vote
Vote in a referendum. If vote.is_aye(), the vote is to enact the proposal;
otherwise it is a vote to keep the status quo.
The dispatch origin of this call must be Signed.
ref_index: The index of the referendum to vote for.vote: The vote configuration.
Weight: O(R) where R is the number of referendums the voter has voted on.
Attributes
| Name | Type |
|---|---|
| ref_index | ReferendumIndex |
| vote | AccountVote<BalanceOf<T>> |
Python
call = substrate.compose_call(
'Democracy', 'vote', {
'ref_index': 'u32',
'vote': {
'Split': {
'aye': 'u128',
'nay': 'u128',
},
'Standard': {
'balance': 'u128',
'vote': {
'aye': 'bool',
'conviction': (
'None',
'Locked1x',
'Locked2x',
'Locked3x',
'Locked4x',
'Locked5x',
'Locked6x',
),
},
},
},
}
)
emergency_cancel
Schedule an emergency cancellation of a referendum. Cannot happen twice to the same referendum.
The dispatch origin of this call must be CancellationOrigin.
-ref_index: The index of the referendum to cancel.
Weight: O(1).
Attributes
| Name | Type |
|---|---|
| ref_index | ReferendumIndex |
Python
call = substrate.compose_call(
'Democracy', 'emergency_cancel', {'ref_index': 'u32'}
)
external_propose
Schedule a referendum to be tabled once it is legal to schedule an external referendum.
The dispatch origin of this call must be ExternalOrigin.
proposal_hash: The preimage hash of the proposal.
Weight: O(V) with V number of vetoers in the blacklist of proposal.
Decoding vec of length V. Charged as maximum
Attributes
| Name | Type |
|---|---|
| proposal_hash | T::Hash |
Python
call = substrate.compose_call(
'Democracy', 'external_propose', {'proposal_hash': '[u8; 32]'}
)
external_propose_majority
Schedule a majority-carries referendum to be tabled next once it is legal to schedule an external referendum.
The dispatch of this call must be ExternalMajorityOrigin.
proposal_hash: The preimage hash of the proposal.
Unlike external_propose, blacklisting has no effect on this and it may replace a
pre-scheduled external_propose call.
Weight: O(1)
Attributes
| Name | Type |
|---|---|
| proposal_hash | T::Hash |
Python
call = substrate.compose_call(
'Democracy', 'external_propose_majority', {'proposal_hash': '[u8; 32]'}
)
external_propose_default
Schedule a negative-turnout-bias referendum to be tabled next once it is legal to schedule an external referendum.
The dispatch of this call must be ExternalDefaultOrigin.
proposal_hash: The preimage hash of the proposal.
Unlike external_propose, blacklisting has no effect on this and it may replace a
pre-scheduled external_propose call.
Weight: O(1)
Attributes
| Name | Type |
|---|---|
| proposal_hash | T::Hash |
Python
call = substrate.compose_call(
'Democracy', 'external_propose_default', {'proposal_hash': '[u8; 32]'}
)
fast_track
Schedule the currently externally-proposed majority-carries referendum to be tabled immediately. If there is no externally-proposed referendum currently, or if there is one but it is not a majority-carries referendum then it fails.
The dispatch of this call must be FastTrackOrigin.
proposal_hash: The hash of the current external proposal.voting_period: The period that is allowed for voting on this proposal. Must be always greater than zero. ForFastTrackOriginmust be equal or greater thanFastTrackVotingPeriod.delay: The number of block after voting has ended in approval and this should be enacted. This doesn't have a minimum amount.
Emits Started.
Weight: O(1)
Attributes
| Name | Type |
|---|---|
| proposal_hash | T::Hash |
| voting_period | T::BlockNumber |
| delay | T::BlockNumber |
Python
call = substrate.compose_call(
'Democracy', 'fast_track', {
'delay': 'u32',
'proposal_hash': '[u8; 32]',
'voting_period': 'u32',
}
)
veto_external
Veto and blacklist the external proposal hash.
The dispatch origin of this call must be VetoOrigin.
proposal_hash: The preimage hash of the proposal to veto and blacklist.
Emits Vetoed.
Weight: O(V + log(V)) where V is number of existing vetoers
Attributes
| Name | Type |
|---|---|
| proposal_hash | T::Hash |
Python
call = substrate.compose_call(
'Democracy', 'veto_external', {'proposal_hash': '[u8; 32]'}
)
cancel_referendum
Remove a referendum.
The dispatch origin of this call must be Root.
ref_index: The index of the referendum to cancel.
# Weight: O(1).
Attributes
| Name | Type |
|---|---|
| ref_index | ReferendumIndex |
Python
call = substrate.compose_call(
'Democracy', 'cancel_referendum', {'ref_index': 'u32'}
)
cancel_queued
Cancel a proposal queued for enactment.
The dispatch origin of this call must be Root.
which: The index of the referendum to cancel.
Weight: O(D) where D is the items in the dispatch queue. Weighted as D = 10.
Attributes
| Name | Type |
|---|---|
| which | ReferendumIndex |
Python
call = substrate.compose_call(
'Democracy', 'cancel_queued', {'which': 'u32'}
)
delegate
Delegate the voting power (with some given conviction) of the sending account.
The balance delegated is locked for as long as it's delegated, and thereafter for the time appropriate for the conviction's lock period.
The dispatch origin of this call must be Signed, and the signing account must either:
- be delegating already; or
- have no voting activity (if there is, then it will need to be removed/consolidated
through reap_vote or unvote).
to: The account whose voting thetargetaccount's voting power will follow.conviction: The conviction that will be attached to the delegated votes. When the account is undelegated, the funds will be locked for the corresponding period.balance: The amount of the account's balance to be used in delegating. This must not be more than the account's current balance.
Emits Delegated.
Weight: O(R) where R is the number of referendums the voter delegating to has
voted on. Weight is charged as if maximum votes.
Attributes
| Name | Type |
|---|---|
| to | T::AccountId |
| conviction | Conviction |
| balance | BalanceOf<T> |
Python
call = substrate.compose_call(
'Democracy', 'delegate', {
'balance': 'u128',
'conviction': (
'None',
'Locked1x',
'Locked2x',
'Locked3x',
'Locked4x',
'Locked5x',
'Locked6x',
),
'to': 'AccountId',
}
)
undelegate
Undelegate the voting power of the sending account.
Tokens may be unlocked following once an amount of time consistent with the lock period of the conviction with which the delegation was issued.
The dispatch origin of this call must be Signed and the signing account must be currently delegating.
Emits Undelegated.
Weight: O(R) where R is the number of referendums the voter delegating to has
voted on. Weight is charged as if maximum votes.
Attributes
No attributes
Python
call = substrate.compose_call(
'Democracy', 'undelegate', {}
)
clear_public_proposals
Clears all public proposals.
The dispatch origin of this call must be Root.
Weight: O(1).
Attributes
No attributes
Python
call = substrate.compose_call(
'Democracy', 'clear_public_proposals', {}
)
note_preimage
Register the preimage for an upcoming proposal. This doesn't require the proposal to be in the dispatch queue but does require a deposit, returned once enacted.
The dispatch origin of this call must be Signed.
encoded_proposal: The preimage of a proposal.
Emits PreimageNoted.
Weight: O(E) with E size of encoded_proposal (protected by a required deposit).
Attributes
| Name | Type |
|---|---|
| encoded_proposal | Vec<u8> |
Python
call = substrate.compose_call(
'Democracy', 'note_preimage', {'encoded_proposal': 'Bytes'}
)
note_preimage_operational
Same as note_preimage but origin is OperationalPreimageOrigin.
Attributes
| Name | Type |
|---|---|
| encoded_proposal | Vec<u8> |
Python
call = substrate.compose_call(
'Democracy', 'note_preimage_operational', {'encoded_proposal': 'Bytes'}
)
note_imminent_preimage
Register the preimage for an upcoming proposal. This requires the proposal to be in the dispatch queue. No deposit is needed. When this call is successful, i.e. the preimage has not been uploaded before and matches some imminent proposal, no fee is paid.
The dispatch origin of this call must be Signed.
encoded_proposal: The preimage of a proposal.
Emits PreimageNoted.
Weight: O(E) with E size of encoded_proposal (protected by a required deposit).
Attributes
| Name | Type |
|---|---|
| encoded_proposal | Vec<u8> |
Python
call = substrate.compose_call(
'Democracy', 'note_imminent_preimage', {'encoded_proposal': 'Bytes'}
)
note_imminent_preimage_operational
Same as note_imminent_preimage but origin is OperationalPreimageOrigin.
Attributes
| Name | Type |
|---|---|
| encoded_proposal | Vec<u8> |
Python
call = substrate.compose_call(
'Democracy', 'note_imminent_preimage_operational', {'encoded_proposal': 'Bytes'}
)
reap_preimage
Remove an expired proposal preimage and collect the deposit.
The dispatch origin of this call must be Signed.
proposal_hash: The preimage hash of a proposal.proposal_length_upper_bound: an upper bound on length of the proposal. Extrinsic is weighted according to this value with no refund.
This will only work after VotingPeriod blocks from the time that the preimage was
noted, if it's the same account doing it. If it's a different account, then it'll only
work an additional EnactmentPeriod later.
Emits PreimageReaped.
Weight: O(D) where D is length of proposal.
Attributes
| Name | Type |
|---|---|
| proposal_hash | T::Hash |
| proposal_len_upper_bound | u32 |
Python
call = substrate.compose_call(
'Democracy', 'reap_preimage', {
'proposal_hash': '[u8; 32]',
'proposal_len_upper_bound': 'u32',
}
)
unlock
Unlock tokens that have an expired lock.
The dispatch origin of this call must be Signed.
target: The account to remove the lock on.
Weight: O(R) with R number of vote of target.
Attributes
| Name | Type |
|---|---|
| target | T::AccountId |
Python
call = substrate.compose_call(
'Democracy', 'unlock', {'target': 'AccountId'}
)
remove_vote
Remove a vote for a referendum.
If:
- the referendum was cancelled, or
- the referendum is ongoing, or
- the referendum has ended such that
- the vote of the account was in opposition to the result; or
- there was no conviction to the account's vote; or
- the account made a split vote
...then the vote is removed cleanly and a following call to unlock may result in more
funds being available.
If, however, the referendum has ended and: - it finished corresponding to the vote of the account, and - the account made a standard vote with conviction, and - the lock period of the conviction is not over ...then the lock will be aggregated into the overall account's lock, which may involve overlocking (where the two locks are combined into a single lock that is the maximum of both the amount locked and the time is it locked for).
The dispatch origin of this call must be Signed, and the signer must have a vote
registered for referendum index.
index: The index of referendum of the vote to be removed.
Weight: O(R + log R) where R is the number of referenda that target has voted on.
Weight is calculated for the maximum number of vote.
Attributes
| Name | Type |
|---|---|
| index | ReferendumIndex |
Python
call = substrate.compose_call(
'Democracy', 'remove_vote', {'index': 'u32'}
)
remove_other_vote
Remove a vote for a referendum.
If the target is equal to the signer, then this function is exactly equivalent to
remove_vote. If not equal to the signer, then the vote must have expired,
either because the referendum was cancelled, because the voter lost the referendum or
because the conviction period is over.
The dispatch origin of this call must be Signed.
target: The account of the vote to be removed; this account must have voted for referendumindex.index: The index of referendum of the vote to be removed.
Weight: O(R + log R) where R is the number of referenda that target has voted on.
Weight is calculated for the maximum number of vote.
Attributes
| Name | Type |
|---|---|
| target | T::AccountId |
| index | ReferendumIndex |
Python
call = substrate.compose_call(
'Democracy', 'remove_other_vote', {
'index': 'u32',
'target': 'AccountId',
}
)
enact_proposal
Enact a proposal from a referendum. For now we just make the weight be the maximum.
Attributes
| Name | Type |
|---|---|
| proposal_hash | T::Hash |
| index | ReferendumIndex |
Python
call = substrate.compose_call(
'Democracy', 'enact_proposal', {
'index': 'u32',
'proposal_hash': '[u8; 32]',
}
)
blacklist
Permanently place a proposal into the blacklist. This prevents it from ever being proposed again.
If called on a queued public or external proposal, then this will result in it being
removed. If the ref_index supplied is an active referendum with the proposal hash,
then it will be cancelled.
The dispatch origin of this call must be BlacklistOrigin.
proposal_hash: The proposal hash to blacklist permanently.ref_index: An ongoing referendum whose hash isproposal_hash, which will be cancelled.
Weight: O(p) (though as this is an high-privilege dispatch, we assume it has a
reasonable value).
Attributes
| Name | Type |
|---|---|
| proposal_hash | T::Hash |
| maybe_ref_index | Option<ReferendumIndex> |
Python
call = substrate.compose_call(
'Democracy', 'blacklist', {
'maybe_ref_index': (None, 'u32'),
'proposal_hash': '[u8; 32]',
}
)
cancel_proposal
Remove a proposal.
The dispatch origin of this call must be CancelProposalOrigin.
prop_index: The index of the proposal to cancel.
Weight: O(p) where p = PublicProps::<T>::decode_len()
Attributes
| Name | Type |
|---|---|
| prop_index | PropIndex |
Python
call = substrate.compose_call(
'Democracy', 'cancel_proposal', {'prop_index': 'u32'}
)
Events
Proposed
A motion has been proposed by a public account.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_index | PropIndex |
u32 |
| deposit | BalanceOf<T> |
u128 |
Tabled
A public proposal has been tabled for referendum vote.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_index | PropIndex |
u32 |
| deposit | BalanceOf<T> |
u128 |
| depositors | Vec<T::AccountId> |
['AccountId'] |
ExternalTabled
An external proposal has been tabled.
Attributes
No attributes
Started
A referendum has begun.
Attributes
| Name | Type | Composition |
|---|---|---|
| ref_index | ReferendumIndex |
u32 |
| threshold | VoteThreshold |
('SuperMajorityApprove', 'SuperMajorityAgainst', 'SimpleMajority') |
Passed
A proposal has been approved by referendum.
Attributes
| Name | Type | Composition |
|---|---|---|
| ref_index | ReferendumIndex |
u32 |
NotPassed
A proposal has been rejected by referendum.
Attributes
| Name | Type | Composition |
|---|---|---|
| ref_index | ReferendumIndex |
u32 |
Cancelled
A referendum has been cancelled.
Attributes
| Name | Type | Composition |
|---|---|---|
| ref_index | ReferendumIndex |
u32 |
Executed
A proposal has been enacted.
Attributes
| Name | Type | Composition |
|---|---|---|
| ref_index | ReferendumIndex |
u32 |
| result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer')}} |
Delegated
An account has delegated their vote to another account.
Attributes
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| target | T::AccountId |
AccountId |
Undelegated
An account has cancelled a previous delegation operation.
Attributes
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
Vetoed
An external proposal has been vetoed.
Attributes
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| proposal_hash | T::Hash |
[u8; 32] |
| until | T::BlockNumber |
u32 |
PreimageNoted
A proposal's preimage was noted, and the deposit taken.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
| who | T::AccountId |
AccountId |
| deposit | BalanceOf<T> |
u128 |
PreimageUsed
A proposal preimage was removed and used (the deposit was returned).
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
| provider | T::AccountId |
AccountId |
| deposit | BalanceOf<T> |
u128 |
PreimageInvalid
A proposal could not be executed because its preimage was invalid.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
| ref_index | ReferendumIndex |
u32 |
PreimageMissing
A proposal could not be executed because its preimage was missing.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
| ref_index | ReferendumIndex |
u32 |
PreimageReaped
A registered preimage was removed and the deposit collected by the reaper.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
| provider | T::AccountId |
AccountId |
| deposit | BalanceOf<T> |
u128 |
| reaper | T::AccountId |
AccountId |
Blacklisted
A proposal_hash has been blacklisted permanently.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
Voted
An account has voted in a referendum
Attributes
| Name | Type | Composition |
|---|---|---|
| voter | T::AccountId |
AccountId |
| ref_index | ReferendumIndex |
u32 |
| vote | AccountVote<BalanceOf<T>> |
{'Standard': {'vote': {'aye': 'bool', 'conviction': ('None', 'Locked1x', 'Locked2x', 'Locked3x', 'Locked4x', 'Locked5x', 'Locked6x')}, 'balance': 'u128'}, 'Split': {'aye': 'u128', 'nay': 'u128'}} |
Seconded
An account has secconded a proposal
Attributes
| Name | Type | Composition |
|---|---|---|
| seconder | T::AccountId |
AccountId |
| prop_index | PropIndex |
u32 |
ProposalCanceled
A proposal got canceled.
Attributes
| Name | Type | Composition |
|---|---|---|
| prop_index | PropIndex |
u32 |
Storage functions
PublicPropCount
The number of (public) proposals that have been made so far.
Python
result = substrate.query(
'Democracy', 'PublicPropCount', []
)
Return value
'u32'
PublicProps
The public proposals. Unsorted. The second item is the proposal's hash.
Python
result = substrate.query(
'Democracy', 'PublicProps', []
)
Return value
[('u32', '[u8; 32]', 'AccountId')]
DepositOf
Those who have locked a deposit.
TWOX-NOTE: Safe, as increasing integer keys are safe.
Python
result = substrate.query(
'Democracy', 'DepositOf', ['u32']
)
Return value
(['AccountId'], 'u128')
Preimages
Map of hashes to the proposal preimage, along with who registered it and their deposit. The block number is the block at which it was deposited.
Python
result = substrate.query(
'Democracy', 'Preimages', ['[u8; 32]']
)
Return value
{
'Available': {
'data': 'Bytes',
'deposit': 'u128',
'expiry': (None, 'u32'),
'provider': 'AccountId',
'since': 'u32',
},
'Missing': 'u32',
}
ReferendumCount
The next free referendum index, aka the number of referenda started so far.
Python
result = substrate.query(
'Democracy', 'ReferendumCount', []
)
Return value
'u32'
LowestUnbaked
The lowest referendum index representing an unbaked referendum. Equal to
ReferendumCount if there isn't a unbaked referendum.
Python
result = substrate.query(
'Democracy', 'LowestUnbaked', []
)
Return value
'u32'
ReferendumInfoOf
Information concerning any given referendum.
TWOX-NOTE: SAFE as indexes are not under an attacker’s control.
Python
result = substrate.query(
'Democracy', 'ReferendumInfoOf', ['u32']
)
Return value
{
'Finished': {'approved': 'bool', 'end': 'u32'},
'Ongoing': {
'delay': 'u32',
'end': 'u32',
'proposal_hash': '[u8; 32]',
'tally': {'ayes': 'u128', 'nays': 'u128', 'turnout': 'u128'},
'threshold': (
'SuperMajorityApprove',
'SuperMajorityAgainst',
'SimpleMajority',
),
},
}
VotingOf
All votes for a particular voter. We store the balance for the number of votes that we have recorded. The second item is the total amount of delegations, that will be added.
TWOX-NOTE: SAFE as AccountIds are crypto hashes anyway.
Python
result = substrate.query(
'Democracy', 'VotingOf', ['AccountId']
)
Return value
{
'Delegating': {
'balance': 'u128',
'conviction': (
'None',
'Locked1x',
'Locked2x',
'Locked3x',
'Locked4x',
'Locked5x',
'Locked6x',
),
'delegations': {'capital': 'u128', 'votes': 'u128'},
'prior': ('u32', 'u128'),
'target': 'AccountId',
},
'Direct': {
'delegations': {'capital': 'u128', 'votes': 'u128'},
'prior': ('u32', 'u128'),
'votes': [('u32', {'Split': 'InnerStruct', 'Standard': 'InnerStruct'})],
},
}
LastTabledWasExternal
True if the last referendum tabled was submitted externally. False if it was a public proposal.
Python
result = substrate.query(
'Democracy', 'LastTabledWasExternal', []
)
Return value
'bool'
NextExternal
The referendum to be tabled whenever it would be valid to table an external proposal.
This happens when a referendum needs to be tabled and one of two conditions are met:
- LastTabledWasExternal is false; or
- PublicProps is empty.
Python
result = substrate.query(
'Democracy', 'NextExternal', []
)
Return value
(
'[u8; 32]',
('SuperMajorityApprove', 'SuperMajorityAgainst', 'SimpleMajority'),
)
Blacklist
A record of who vetoed what. Maps proposal hash to a possible existent block number (until when it may not be resubmitted) and who vetoed it.
Python
result = substrate.query(
'Democracy', 'Blacklist', ['[u8; 32]']
)
Return value
('u32', ['AccountId'])
Cancellations
Record of all proposals that have been subject to emergency cancellation.
Python
result = substrate.query(
'Democracy', 'Cancellations', ['[u8; 32]']
)
Return value
'bool'
StorageVersion
Storage version of the pallet.
New networks start with last version.
Python
result = substrate.query(
'Democracy', 'StorageVersion', []
)
Return value
('V1', )
Constants
EnactmentPeriod
The period between a proposal being approved and enacted.
It should generally be a little more than the unstake period to ensure that voting stakers have an opportunity to remove themselves from the system in the case where they are on the losing side of a vote.
Value
115200
Python
constant = substrate.get_constant('Democracy', 'EnactmentPeriod')
LaunchPeriod
How often (in blocks) new public referenda are launched.
Value
100800
Python
constant = substrate.get_constant('Democracy', 'LaunchPeriod')
VotingPeriod
How often (in blocks) to check for new votes.
Value
100800
Python
constant = substrate.get_constant('Democracy', 'VotingPeriod')
VoteLockingPeriod
The minimum period of vote locking.
It should be no shorter than enactment period to ensure that in the case of an approval, those successful voters are locked into the consequences that their votes entail.
Value
115200
Python
constant = substrate.get_constant('Democracy', 'VoteLockingPeriod')
MinimumDeposit
The minimum amount to be used as a deposit for a public referendum proposal.
Value
10000000000000000000000
Python
constant = substrate.get_constant('Democracy', 'MinimumDeposit')
InstantAllowed
Indicator for whether an emergency origin is even allowed to happen. Some chains may
want to set this permanently to false, others may want to condition it on things such
as an upgrade having happened recently.
Value
True
Python
constant = substrate.get_constant('Democracy', 'InstantAllowed')
FastTrackVotingPeriod
Minimum voting period allowed for a fast-track referendum.
Value
14400
Python
constant = substrate.get_constant('Democracy', 'FastTrackVotingPeriod')
CooloffPeriod
Period in blocks where an external proposal may not be re-submitted after being vetoed.
Value
100800
Python
constant = substrate.get_constant('Democracy', 'CooloffPeriod')
PreimageByteDeposit
The amount of balance that must be deposited per byte of preimage stored.
Value
100000000000000
Python
constant = substrate.get_constant('Democracy', 'PreimageByteDeposit')
MaxVotes
The maximum number of votes for an account.
Also used to compute weight, an overly big value can
lead to extrinsic with very big weight: see delegate for instance.
Value
100
Python
constant = substrate.get_constant('Democracy', 'MaxVotes')
MaxProposals
The maximum number of public proposals that can exist at any time.
Value
100
Python
constant = substrate.get_constant('Democracy', 'MaxProposals')
Errors
ValueLow
Value too low
ProposalMissing
Proposal does not exist
AlreadyCanceled
Cannot cancel the same proposal twice
DuplicateProposal
Proposal already made
ProposalBlacklisted
Proposal still blacklisted
NotSimpleMajority
Next external proposal not simple majority
InvalidHash
Invalid hash
NoProposal
No external proposal
AlreadyVetoed
Identity may not veto a proposal twice
DuplicatePreimage
Preimage already noted
NotImminent
Not imminent
TooEarly
Too early
Imminent
Imminent
PreimageMissing
Preimage not found
ReferendumInvalid
Vote given for invalid referendum
PreimageInvalid
Invalid preimage
NoneWaiting
No proposals waiting
NotVoter
The given account did not vote on the referendum.
NoPermission
The actor has no permission to conduct the action.
AlreadyDelegating
The account is already delegating.
InsufficientFunds
Too high a balance was provided that the account cannot afford.
NotDelegating
The account is not currently delegating.
VotesExist
The account currently has votes attached to it and the operation cannot succeed until
these are removed, either through unvote or reap_vote.
InstantNotAllowed
The instant referendum origin is currently disallowed.
Nonsense
Delegation to oneself makes no sense.
WrongUpperBound
Invalid upper bound.
MaxVotesReached
Maximum number of votes reached.
TooManyProposals
Maximum number of proposals reached.
VotingPeriodLow
Voting period too low
Council
Calls
set_members
Set the collective's membership.
new_members: The new member list. Be nice to the chain and provide it sorted.prime: The prime member whose vote sets the default.old_count: The upper bound for the previous number of members in storage. Used for weight estimation.
Requires root origin.
NOTE: Does not enforce the expected MaxMembers limit on the amount of members, but
the weight estimations rely on it to estimate dispatchable weight.
# WARNING:
The pallet-collective can also be managed by logic outside of the pallet through the
implementation of the trait [ChangeMembers].
Any call to set_members must be careful that the member set doesn't get out of sync
with other logic managing the member set.
# <weight>
## Weight
- O(MP + N) where:
- M old-members-count (code- and governance-bounded)
- N new-members-count (code- and governance-bounded)
- P proposals-count (code-bounded)
- DB:
- 1 storage mutation (codec O(M) read, O(N) write) for reading and writing the
members
- 1 storage read (codec O(P)) for reading the proposals
- P storage mutations (codec O(M)) for updating the votes for each proposal
- 1 storage write (codec O(1)) for deleting the old prime and setting the new one
# </weight>
Attributes
| Name | Type |
|---|---|
| new_members | Vec<T::AccountId> |
| prime | Option<T::AccountId> |
| old_count | MemberCount |
Python
call = substrate.compose_call(
'Council', 'set_members', {
'new_members': ['AccountId'],
'old_count': 'u32',
'prime': (None, 'AccountId'),
}
)
execute
Dispatch a proposal from a member using the Member origin.
Origin must be a member of the collective.
# <weight>
## Weight
- O(M + P) where M members-count (code-bounded) and P complexity of dispatching
proposal
- DB: 1 read (codec O(M)) + DB access of proposal
- 1 event
# </weight>
Attributes
| Name | Type |
|---|---|
| proposal | Box<<T as Config<I>>::Proposal> |
| length_bound | u32 |
Python
call = substrate.compose_call(
'Council', 'execute', {
'length_bound': 'u32',
'proposal': 'Call',
}
)
propose
Add a new proposal to either be voted on or executed directly.
Requires the sender to be member.
threshold determines whether proposal is executed directly (threshold < 2)
or put up for voting.
# <weight>
## Weight
- O(B + M + P1) or O(B + M + P2) where:
- B is proposal size in bytes (length-fee-bounded)
- M is members-count (code- and governance-bounded)
- branching is influenced by threshold where:
- P1 is proposal execution complexity (threshold < 2)
- P2 is proposals-count (code-bounded) (threshold >= 2)
- DB:
- 1 storage read is_member (codec O(M))
- 1 storage read ProposalOf::contains_key (codec O(1))
- DB accesses influenced by threshold:
- EITHER storage accesses done by proposal (threshold < 2)
- OR proposal insertion (threshold <= 2)
- 1 storage mutation Proposals (codec O(P2))
- 1 storage mutation ProposalCount (codec O(1))
- 1 storage write ProposalOf (codec O(B))
- 1 storage write Voting (codec O(M))
- 1 event
# </weight>
Attributes
| Name | Type |
|---|---|
| threshold | MemberCount |
| proposal | Box<<T as Config<I>>::Proposal> |
| length_bound | u32 |
Python
call = substrate.compose_call(
'Council', 'propose', {
'length_bound': 'u32',
'proposal': 'Call',
'threshold': 'u32',
}
)
vote
Add an aye or nay vote for the sender to the given proposal.
Requires the sender to be a member.
Transaction fees will be waived if the member is voting on any particular proposal
for the first time and the call is successful. Subsequent vote changes will charge a
fee.
# <weight>
## Weight
- O(M) where M is members-count (code- and governance-bounded)
- DB:
- 1 storage read Members (codec O(M))
- 1 storage mutation Voting (codec O(M))
- 1 event
# </weight>
Attributes
| Name | Type |
|---|---|
| proposal | T::Hash |
| index | ProposalIndex |
| approve | bool |
Python
call = substrate.compose_call(
'Council', 'vote', {
'approve': 'bool',
'index': 'u32',
'proposal': '[u8; 32]',
}
)
close
Close a vote that is either approved, disapproved or whose voting period has ended.
May be called by any signed account in order to finish voting and close the proposal.
If called before the end of the voting period it will only close the vote if it is has enough votes to be approved or disapproved.
If called after the end of the voting period abstentions are counted as rejections unless there is a prime member set and the prime member cast an approval.
If the close operation completes successfully with disapproval, the transaction fee will be waived. Otherwise execution of the approved operation will be charged to the caller.
proposal_weight_bound: The maximum amount of weight consumed by executing the closed proposal.length_bound: The upper bound for the length of the proposal in storage. Checked viastorage::readso it issize_of::<u32>() == 4larger than the pure length.
# <weight>
## Weight
- O(B + M + P1 + P2) where:
- B is proposal size in bytes (length-fee-bounded)
- M is members-count (code- and governance-bounded)
- P1 is the complexity of proposal preimage.
- P2 is proposal-count (code-bounded)
- DB:
- 2 storage reads (Members: codec O(M), Prime: codec O(1))
- 3 mutations (Voting: codec O(M), ProposalOf: codec O(B), Proposals: codec
O(P2))
- any mutations done while executing proposal (P1)
- up to 3 events
# </weight>
Attributes
| Name | Type |
|---|---|
| proposal_hash | T::Hash |
| index | ProposalIndex |
| proposal_weight_bound | Weight |
| length_bound | u32 |
Python
call = substrate.compose_call(
'Council', 'close', {
'index': 'u32',
'length_bound': 'u32',
'proposal_hash': '[u8; 32]',
'proposal_weight_bound': 'u64',
}
)
disapprove_proposal
Disapprove a proposal, close, and remove it from the system, regardless of its current state.
Must be called by the Root origin.
Parameters:
* proposal_hash: The hash of the proposal that should be disapproved.
# <weight> Complexity: O(P) where P is the number of max proposals DB Weight: * Reads: Proposals * Writes: Voting, Proposals, ProposalOf # </weight>
Attributes
| Name | Type |
|---|---|
| proposal_hash | T::Hash |
Python
call = substrate.compose_call(
'Council', 'disapprove_proposal', {'proposal_hash': '[u8; 32]'}
)
Events
Proposed
A motion (given hash) has been proposed (by given account) with a threshold (given
MemberCount).
Attributes
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
| proposal_index | ProposalIndex |
u32 |
| proposal_hash | T::Hash |
[u8; 32] |
| threshold | MemberCount |
u32 |
Voted
A motion (given hash) has been voted on by given account, leaving
a tally (yes votes and no votes given respectively as MemberCount).
Attributes
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
| proposal_hash | T::Hash |
[u8; 32] |
| voted | bool |
bool |
| yes | MemberCount |
u32 |
| no | MemberCount |
u32 |
Approved
A motion was approved by the required threshold.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
Disapproved
A motion was not approved by the required threshold.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
Executed
A motion was executed; result will be Ok if it returned without error.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
| result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer')}} |
MemberExecuted
A single member did some action; result will be Ok if it returned without error.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
| result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer')}} |
Closed
A proposal was closed because its threshold was reached or after its duration was up.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
| yes | MemberCount |
u32 |
| no | MemberCount |
u32 |
Storage functions
Proposals
The hashes of the active proposals.
Python
result = substrate.query(
'Council', 'Proposals', []
)
Return value
['[u8; 32]']
ProposalOf
Actual proposal for a given hash, if it's current.
Python
result = substrate.query(
'Council', 'ProposalOf', ['[u8; 32]']
)
Return value
'Call'
Voting
Votes on a given proposal, if it is ongoing.
Python
result = substrate.query(
'Council', 'Voting', ['[u8; 32]']
)
Return value
{'ayes': ['AccountId'], 'end': 'u32', 'index': 'u32', 'nays': ['AccountId'], 'threshold': 'u32'}
ProposalCount
Proposals so far.
Python
result = substrate.query(
'Council', 'ProposalCount', []
)
Return value
'u32'
Members
The current members of the collective. This is stored sorted (just by value).
Python
result = substrate.query(
'Council', 'Members', []
)
Return value
['AccountId']
Prime
The prime member that helps determine the default vote behavior in case of absentations.
Python
result = substrate.query(
'Council', 'Prime', []
)
Return value
'AccountId'
Errors
NotMember
Account is not a member
DuplicateProposal
Duplicate proposals not allowed
ProposalMissing
Proposal must exist
WrongIndex
Mismatched index
DuplicateVote
Duplicate vote ignored
AlreadyInitialized
Members are already initialized!
TooEarly
The close call was made too early, before the end of the voting.
TooManyProposals
There can only be a maximum of MaxProposals active proposals.
WrongProposalWeight
The given weight bound for the proposal was too low.
WrongProposalLength
The given length bound for the proposal was too low.
TechnicalCommittee
Calls
set_members
Set the collective's membership.
new_members: The new member list. Be nice to the chain and provide it sorted.prime: The prime member whose vote sets the default.old_count: The upper bound for the previous number of members in storage. Used for weight estimation.
Requires root origin.
NOTE: Does not enforce the expected MaxMembers limit on the amount of members, but
the weight estimations rely on it to estimate dispatchable weight.
# WARNING:
The pallet-collective can also be managed by logic outside of the pallet through the
implementation of the trait [ChangeMembers].
Any call to set_members must be careful that the member set doesn't get out of sync
with other logic managing the member set.
# <weight>
## Weight
- O(MP + N) where:
- M old-members-count (code- and governance-bounded)
- N new-members-count (code- and governance-bounded)
- P proposals-count (code-bounded)
- DB:
- 1 storage mutation (codec O(M) read, O(N) write) for reading and writing the
members
- 1 storage read (codec O(P)) for reading the proposals
- P storage mutations (codec O(M)) for updating the votes for each proposal
- 1 storage write (codec O(1)) for deleting the old prime and setting the new one
# </weight>
Attributes
| Name | Type |
|---|---|
| new_members | Vec<T::AccountId> |
| prime | Option<T::AccountId> |
| old_count | MemberCount |
Python
call = substrate.compose_call(
'TechnicalCommittee', 'set_members', {
'new_members': ['AccountId'],
'old_count': 'u32',
'prime': (None, 'AccountId'),
}
)
execute
Dispatch a proposal from a member using the Member origin.
Origin must be a member of the collective.
# <weight>
## Weight
- O(M + P) where M members-count (code-bounded) and P complexity of dispatching
proposal
- DB: 1 read (codec O(M)) + DB access of proposal
- 1 event
# </weight>
Attributes
| Name | Type |
|---|---|
| proposal | Box<<T as Config<I>>::Proposal> |
| length_bound | u32 |
Python
call = substrate.compose_call(
'TechnicalCommittee', 'execute', {
'length_bound': 'u32',
'proposal': 'Call',
}
)
propose
Add a new proposal to either be voted on or executed directly.
Requires the sender to be member.
threshold determines whether proposal is executed directly (threshold < 2)
or put up for voting.
# <weight>
## Weight
- O(B + M + P1) or O(B + M + P2) where:
- B is proposal size in bytes (length-fee-bounded)
- M is members-count (code- and governance-bounded)
- branching is influenced by threshold where:
- P1 is proposal execution complexity (threshold < 2)
- P2 is proposals-count (code-bounded) (threshold >= 2)
- DB:
- 1 storage read is_member (codec O(M))
- 1 storage read ProposalOf::contains_key (codec O(1))
- DB accesses influenced by threshold:
- EITHER storage accesses done by proposal (threshold < 2)
- OR proposal insertion (threshold <= 2)
- 1 storage mutation Proposals (codec O(P2))
- 1 storage mutation ProposalCount (codec O(1))
- 1 storage write ProposalOf (codec O(B))
- 1 storage write Voting (codec O(M))
- 1 event
# </weight>
Attributes
| Name | Type |
|---|---|
| threshold | MemberCount |
| proposal | Box<<T as Config<I>>::Proposal> |
| length_bound | u32 |
Python
call = substrate.compose_call(
'TechnicalCommittee', 'propose', {
'length_bound': 'u32',
'proposal': 'Call',
'threshold': 'u32',
}
)
vote
Add an aye or nay vote for the sender to the given proposal.
Requires the sender to be a member.
Transaction fees will be waived if the member is voting on any particular proposal
for the first time and the call is successful. Subsequent vote changes will charge a
fee.
# <weight>
## Weight
- O(M) where M is members-count (code- and governance-bounded)
- DB:
- 1 storage read Members (codec O(M))
- 1 storage mutation Voting (codec O(M))
- 1 event
# </weight>
Attributes
| Name | Type |
|---|---|
| proposal | T::Hash |
| index | ProposalIndex |
| approve | bool |
Python
call = substrate.compose_call(
'TechnicalCommittee', 'vote', {
'approve': 'bool',
'index': 'u32',
'proposal': '[u8; 32]',
}
)
close
Close a vote that is either approved, disapproved or whose voting period has ended.
May be called by any signed account in order to finish voting and close the proposal.
If called before the end of the voting period it will only close the vote if it is has enough votes to be approved or disapproved.
If called after the end of the voting period abstentions are counted as rejections unless there is a prime member set and the prime member cast an approval.
If the close operation completes successfully with disapproval, the transaction fee will be waived. Otherwise execution of the approved operation will be charged to the caller.
proposal_weight_bound: The maximum amount of weight consumed by executing the closed proposal.length_bound: The upper bound for the length of the proposal in storage. Checked viastorage::readso it issize_of::<u32>() == 4larger than the pure length.
# <weight>
## Weight
- O(B + M + P1 + P2) where:
- B is proposal size in bytes (length-fee-bounded)
- M is members-count (code- and governance-bounded)
- P1 is the complexity of proposal preimage.
- P2 is proposal-count (code-bounded)
- DB:
- 2 storage reads (Members: codec O(M), Prime: codec O(1))
- 3 mutations (Voting: codec O(M), ProposalOf: codec O(B), Proposals: codec
O(P2))
- any mutations done while executing proposal (P1)
- up to 3 events
# </weight>
Attributes
| Name | Type |
|---|---|
| proposal_hash | T::Hash |
| index | ProposalIndex |
| proposal_weight_bound | Weight |
| length_bound | u32 |
Python
call = substrate.compose_call(
'TechnicalCommittee', 'close', {
'index': 'u32',
'length_bound': 'u32',
'proposal_hash': '[u8; 32]',
'proposal_weight_bound': 'u64',
}
)
disapprove_proposal
Disapprove a proposal, close, and remove it from the system, regardless of its current state.
Must be called by the Root origin.
Parameters:
* proposal_hash: The hash of the proposal that should be disapproved.
# <weight> Complexity: O(P) where P is the number of max proposals DB Weight: * Reads: Proposals * Writes: Voting, Proposals, ProposalOf # </weight>
Attributes
| Name | Type |
|---|---|
| proposal_hash | T::Hash |
Python
call = substrate.compose_call(
'TechnicalCommittee', 'disapprove_proposal', {'proposal_hash': '[u8; 32]'}
)
Events
Proposed
A motion (given hash) has been proposed (by given account) with a threshold (given
MemberCount).
Attributes
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
| proposal_index | ProposalIndex |
u32 |
| proposal_hash | T::Hash |
[u8; 32] |
| threshold | MemberCount |
u32 |
Voted
A motion (given hash) has been voted on by given account, leaving
a tally (yes votes and no votes given respectively as MemberCount).
Attributes
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
| proposal_hash | T::Hash |
[u8; 32] |
| voted | bool |
bool |
| yes | MemberCount |
u32 |
| no | MemberCount |
u32 |
Approved
A motion was approved by the required threshold.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
Disapproved
A motion was not approved by the required threshold.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
Executed
A motion was executed; result will be Ok if it returned without error.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
| result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer')}} |
MemberExecuted
A single member did some action; result will be Ok if it returned without error.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
| result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer')}} |
Closed
A proposal was closed because its threshold was reached or after its duration was up.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_hash | T::Hash |
[u8; 32] |
| yes | MemberCount |
u32 |
| no | MemberCount |
u32 |
Storage functions
Proposals
The hashes of the active proposals.
Python
result = substrate.query(
'TechnicalCommittee', 'Proposals', []
)
Return value
['[u8; 32]']
ProposalOf
Actual proposal for a given hash, if it's current.
Python
result = substrate.query(
'TechnicalCommittee', 'ProposalOf', ['[u8; 32]']
)
Return value
'Call'
Voting
Votes on a given proposal, if it is ongoing.
Python
result = substrate.query(
'TechnicalCommittee', 'Voting', ['[u8; 32]']
)
Return value
{'ayes': ['AccountId'], 'end': 'u32', 'index': 'u32', 'nays': ['AccountId'], 'threshold': 'u32'}
ProposalCount
Proposals so far.
Python
result = substrate.query(
'TechnicalCommittee', 'ProposalCount', []
)
Return value
'u32'
Members
The current members of the collective. This is stored sorted (just by value).
Python
result = substrate.query(
'TechnicalCommittee', 'Members', []
)
Return value
['AccountId']
Prime
The prime member that helps determine the default vote behavior in case of absentations.
Python
result = substrate.query(
'TechnicalCommittee', 'Prime', []
)
Return value
'AccountId'
Errors
NotMember
Account is not a member
DuplicateProposal
Duplicate proposals not allowed
ProposalMissing
Proposal must exist
WrongIndex
Mismatched index
DuplicateVote
Duplicate vote ignored
AlreadyInitialized
Members are already initialized!
TooEarly
The close call was made too early, before the end of the voting.
TooManyProposals
There can only be a maximum of MaxProposals active proposals.
WrongProposalWeight
The given weight bound for the proposal was too low.
WrongProposalLength
The given length bound for the proposal was too low.
ElectionsPhragmen
Calls
vote
Vote for a set of candidates for the upcoming round of election. This can be called to set the initial votes, or update already existing votes.
Upon initial voting, value units of who's balance is locked and a deposit amount is
reserved. The deposit is based on the number of votes and can be updated over time.
The votes should:
- not be empty.
- be less than the number of possible candidates. Note that all current members and
runners-up are also automatically candidates for the next round.
If value is more than who's free balance, then the maximum of the two is used.
The dispatch origin of this call must be signed.
### Warning
It is the responsibility of the caller to NOT place all of their balance into the lock and keep some for further operations.
# <weight> We assume the maximum weight among all 3 cases: vote_equal, vote_more and vote_less. # </weight>
Attributes
| Name | Type |
|---|---|
| votes | Vec<T::AccountId> |
| value | BalanceOf<T> |
Python
call = substrate.compose_call(
'ElectionsPhragmen', 'vote', {
'value': 'u128',
'votes': ['AccountId'],
}
)
remove_voter
Remove origin as a voter.
This removes the lock and returns the deposit.
The dispatch origin of this call must be signed and be a voter.
Attributes
No attributes
Python
call = substrate.compose_call(
'ElectionsPhragmen', 'remove_voter', {}
)
submit_candidacy
Submit oneself for candidacy. A fixed amount of deposit is recorded.
All candidates are wiped at the end of the term. They either become a member/runner-up, or leave the system while their deposit is slashed.
The dispatch origin of this call must be signed.
### Warning
Even if a candidate ends up being a member, they must call [Call::renounce_candidacy]
to get their deposit back. Losing the spot in an election will always lead to a slash.
# <weight> The number of current candidates must be provided as witness data. # </weight>
Attributes
| Name | Type |
|---|---|
| candidate_count | u32 |
Python
call = substrate.compose_call(
'ElectionsPhragmen', 'submit_candidacy', {'candidate_count': 'u32'}
)
renounce_candidacy
Renounce one's intention to be a candidate for the next election round. 3 potential outcomes exist:
originis a candidate and not elected in any set. In this case, the deposit is unreserved, returned and origin is removed as a candidate.originis a current runner-up. In this case, the deposit is unreserved, returned and origin is removed as a runner-up.originis a current member. In this case, the deposit is unreserved and origin is removed as a member, consequently not being a candidate for the next round anymore. Similar toremove_member, if replacement runners exists, they are immediately used. If the prime is renouncing, then no prime will exist until the next round.
The dispatch origin of this call must be signed, and have one of the above roles.
# <weight> The type of renouncing must be provided as witness data. # </weight>
Attributes
| Name | Type |
|---|---|
| renouncing | Renouncing |
Python
call = substrate.compose_call(
'ElectionsPhragmen', 'renounce_candidacy', {
'renouncing': {
'Candidate': 'u32',
'Member': None,
'RunnerUp': None,
},
}
)
remove_member
Remove a particular member from the set. This is effective immediately and the bond of the outgoing member is slashed.
If a runner-up is available, then the best runner-up will be removed and replaces the outgoing member. Otherwise, a new phragmen election is started.
The dispatch origin of this call must be root.
Note that this does not affect the designated block number of the next election.
# <weight> If we have a replacement, we use a small weight. Else, since this is a root call and will go into phragmen, we assume full block for now. # </weight>
Attributes
| Name | Type |
|---|---|
| who | <T::Lookup as StaticLookup>::Source |
| has_replacement | bool |
Python
call = substrate.compose_call(
'ElectionsPhragmen', 'remove_member', {
'has_replacement': 'bool',
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
}
)
clean_defunct_voters
Clean all voters who are defunct (i.e. they do not serve any purpose at all). The deposit of the removed voters are returned.
This is an root function to be used only for cleaning the state.
The dispatch origin of this call must be root.
# <weight> The total number of voters and those that are defunct must be provided as witness data. # </weight>
Attributes
| Name | Type |
|---|---|
| num_voters | u32 |
| num_defunct | u32 |
Python
call = substrate.compose_call(
'ElectionsPhragmen', 'clean_defunct_voters', {
'num_defunct': 'u32',
'num_voters': 'u32',
}
)
Events
NewTerm
A new term with new_members. This indicates that enough candidates existed to run
the election, not that enough have has been elected. The inner value must be examined
for this purpose. A NewTerm(\[\]) indicates that some candidates got their bond
slashed and none were elected, whilst EmptyTerm means that no candidates existed to
begin with.
Attributes
| Name | Type | Composition |
|---|---|---|
| new_members | Vec<(<T as frame_system::Config>::AccountId, BalanceOf<T>)> |
[('AccountId', 'u128')] |
EmptyTerm
No (or not enough) candidates existed for this round. This is different from
NewTerm(\[\]). See the description of NewTerm.
Attributes
No attributes
ElectionError
Internal error happened while trying to perform election.
Attributes
No attributes
MemberKicked
A member has been removed. This should always be followed by either NewTerm or
EmptyTerm.
Attributes
| Name | Type | Composition |
|---|---|---|
| member | <T as frame_system::Config>::AccountId |
AccountId |
Renounced
Someone has renounced their candidacy.
Attributes
| Name | Type | Composition |
|---|---|---|
| candidate | <T as frame_system::Config>::AccountId |
AccountId |
CandidateSlashed
A candidate was slashed by amount due to failing to obtain a seat as member or runner-up.
Note that old members and runners-up are also candidates.
Attributes
| Name | Type | Composition |
|---|---|---|
| candidate | <T as frame_system::Config>::AccountId |
AccountId |
| amount | BalanceOf<T> |
u128 |
SeatHolderSlashed
A seat holder was slashed by amount by being forcefully removed from the set.
Attributes
| Name | Type | Composition |
|---|---|---|
| seat_holder | <T as frame_system::Config>::AccountId |
AccountId |
| amount | BalanceOf<T> |
u128 |
Storage functions
Members
The current elected members.
Invariant: Always sorted based on account id.
Python
result = substrate.query(
'ElectionsPhragmen', 'Members', []
)
Return value
[{'deposit': 'u128', 'stake': 'u128', 'who': 'AccountId'}]
RunnersUp
The current reserved runners-up.
Invariant: Always sorted based on rank (worse to best). Upon removal of a member, the last (i.e. best) runner-up will be replaced.
Python
result = substrate.query(
'ElectionsPhragmen', 'RunnersUp', []
)
Return value
[{'deposit': 'u128', 'stake': 'u128', 'who': 'AccountId'}]
Candidates
The present candidate list. A current member or runner-up can never enter this vector and is always implicitly assumed to be a candidate.
Second element is the deposit.
Invariant: Always sorted based on account id.
Python
result = substrate.query(
'ElectionsPhragmen', 'Candidates', []
)
Return value
[('AccountId', 'u128')]
ElectionRounds
The total number of vote rounds that have happened, excluding the upcoming one.
Python
result = substrate.query(
'ElectionsPhragmen', 'ElectionRounds', []
)
Return value
'u32'
Voting
Votes and locked stake of a particular voter.
TWOX-NOTE: SAFE as AccountId is a crypto hash.
Python
result = substrate.query(
'ElectionsPhragmen', 'Voting', ['AccountId']
)
Return value
{'deposit': 'u128', 'stake': 'u128', 'votes': ['AccountId']}
Constants
PalletId
Identifier for the elections-phragmen pallet's lock
Value
'0x706872656c656374'
Python
constant = substrate.get_constant('ElectionsPhragmen', 'PalletId')
CandidacyBond
How much should be locked up in order to submit one's candidacy.
Value
1000000000000000000
Python
constant = substrate.get_constant('ElectionsPhragmen', 'CandidacyBond')
VotingBondBase
Base deposit associated with voting.
This should be sensibly high to economically ensure the pallet cannot be attacked by creating a gigantic number of votes.
Value
3990000000000000000
Python
constant = substrate.get_constant('ElectionsPhragmen', 'VotingBondBase')
VotingBondFactor
The amount of bond that need to be locked for each vote (32 bytes).
Value
1920000000000000000
Python
constant = substrate.get_constant('ElectionsPhragmen', 'VotingBondFactor')
DesiredMembers
Number of members to elect.
Value
7
Python
constant = substrate.get_constant('ElectionsPhragmen', 'DesiredMembers')
DesiredRunnersUp
Number of runners_up to keep.
Value
30
Python
constant = substrate.get_constant('ElectionsPhragmen', 'DesiredRunnersUp')
TermDuration
How long each seat is kept. This defines the next block number at which an election round will happen. If set to zero, no elections are ever triggered and the module will be in passive mode.
Value
43200
Python
constant = substrate.get_constant('ElectionsPhragmen', 'TermDuration')
Errors
UnableToVote
Cannot vote when no candidates or members exist.
NoVotes
Must vote for at least one candidate.
TooManyVotes
Cannot vote more than candidates.
MaximumVotesExceeded
Cannot vote more than maximum allowed.
LowBalance
Cannot vote with stake less than minimum balance.
UnableToPayBond
Voter can not pay voting bond.
MustBeVoter
Must be a voter.
ReportSelf
Cannot report self.
DuplicatedCandidate
Duplicated candidate submission.
MemberSubmit
Member cannot re-submit candidacy.
RunnerUpSubmit
Runner cannot re-submit candidacy.
InsufficientCandidateFunds
Candidate does not have enough funds.
NotMember
Not a member.
InvalidWitnessData
The provided count of number of candidates is incorrect.
InvalidVoteCount
The provided count of number of votes is incorrect.
InvalidRenouncing
The renouncing origin presented a wrong Renouncing parameter.
InvalidReplacement
Prediction regarding replacement after member removal is wrong.
TechnicalMembership
Calls
add_member
Add a member who to the set.
May only be called from T::AddOrigin.
Attributes
| Name | Type |
|---|---|
| who | T::AccountId |
Python
call = substrate.compose_call(
'TechnicalMembership', 'add_member', {'who': 'AccountId'}
)
remove_member
Remove a member who from the set.
May only be called from T::RemoveOrigin.
Attributes
| Name | Type |
|---|---|
| who | T::AccountId |
Python
call = substrate.compose_call(
'TechnicalMembership', 'remove_member', {'who': 'AccountId'}
)
swap_member
Swap out one member remove for another add.
May only be called from T::SwapOrigin.
Prime membership is not passed from remove to add, if extant.
Attributes
| Name | Type |
|---|---|
| remove | T::AccountId |
| add | T::AccountId |
Python
call = substrate.compose_call(
'TechnicalMembership', 'swap_member', {
'add': 'AccountId',
'remove': 'AccountId',
}
)
reset_members
Change the membership to a new set, disregarding the existing membership. Be nice and
pass members pre-sorted.
May only be called from T::ResetOrigin.
Attributes
| Name | Type |
|---|---|
| members | Vec<T::AccountId> |
Python
call = substrate.compose_call(
'TechnicalMembership', 'reset_members', {'members': ['AccountId']}
)
change_key
Swap out the sending member for some other key new.
May only be called from Signed origin of a current member.
Prime membership is passed from the origin account to new, if extant.
Attributes
| Name | Type |
|---|---|
| new | T::AccountId |
Python
call = substrate.compose_call(
'TechnicalMembership', 'change_key', {'new': 'AccountId'}
)
set_prime
Set the prime member. Must be a current member.
May only be called from T::PrimeOrigin.
Attributes
| Name | Type |
|---|---|
| who | T::AccountId |
Python
call = substrate.compose_call(
'TechnicalMembership', 'set_prime', {'who': 'AccountId'}
)
clear_prime
Remove the prime member if it exists.
May only be called from T::PrimeOrigin.
Attributes
No attributes
Python
call = substrate.compose_call(
'TechnicalMembership', 'clear_prime', {}
)
Events
MemberAdded
The given member was added; see the transaction for who.
Attributes
No attributes
MemberRemoved
The given member was removed; see the transaction for who.
Attributes
No attributes
MembersSwapped
Two members were swapped; see the transaction for who.
Attributes
No attributes
MembersReset
The membership was reset; see the transaction for who the new set is.
Attributes
No attributes
KeyChanged
One of the members' keys changed.
Attributes
No attributes
Dummy
Phantom member, never used.
Attributes
No attributes
Storage functions
Members
The current membership, stored as an ordered Vec.
Python
result = substrate.query(
'TechnicalMembership', 'Members', []
)
Return value
['AccountId']
Prime
The current prime member, if one exists.
Python
result = substrate.query(
'TechnicalMembership', 'Prime', []
)
Return value
'AccountId'
Errors
AlreadyMember
Already a member.
NotMember
Not a member.
TooManyMembers
Too many members.
Treasury
Calls
propose_spend
Put forward a suggestion for spending. A deposit proportional to the value is reserved and slashed if the proposal is rejected. It is returned once the proposal is awarded.
# <weight>
- Complexity: O(1)
- DbReads: ProposalCount, origin account
- DbWrites: ProposalCount, Proposals, origin account
# </weight>
Attributes
| Name | Type |
|---|---|
| value | BalanceOf<T, I> |
| beneficiary | <T::Lookup as StaticLookup>::Source |
Python
call = substrate.compose_call(
'Treasury', 'propose_spend', {
'beneficiary': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
'value': 'u128',
}
)
reject_proposal
Reject a proposed spend. The original deposit will be slashed.
May only be called from T::RejectOrigin.
# <weight>
- Complexity: O(1)
- DbReads: Proposals, rejected proposer account
- DbWrites: Proposals, rejected proposer account
# </weight>
Attributes
| Name | Type |
|---|---|
| proposal_id | ProposalIndex |
Python
call = substrate.compose_call(
'Treasury', 'reject_proposal', {'proposal_id': 'u32'}
)
approve_proposal
Approve a proposal. At a later time, the proposal will be allocated to the beneficiary and the original deposit will be returned.
May only be called from T::ApproveOrigin.
# <weight>
- Complexity: O(1).
- DbReads: Proposals, Approvals
- DbWrite: Approvals
# </weight>
Attributes
| Name | Type |
|---|---|
| proposal_id | ProposalIndex |
Python
call = substrate.compose_call(
'Treasury', 'approve_proposal', {'proposal_id': 'u32'}
)
spend
Propose and approve a spend of treasury funds.
origin: Must beSpendOriginwith theSuccessvalue being at leastamount.amount: The amount to be transferred from the treasury to thebeneficiary.beneficiary: The destination account for the transfer.
NOTE: For record-keeping purposes, the proposer is deemed to be equivalent to the beneficiary.
Attributes
| Name | Type |
|---|---|
| amount | BalanceOf<T, I> |
| beneficiary | <T::Lookup as StaticLookup>::Source |
Python
call = substrate.compose_call(
'Treasury', 'spend', {
'amount': 'u128',
'beneficiary': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
}
)
remove_approval
Force a previously approved proposal to be removed from the approval queue. The original deposit will no longer be returned.
May only be called from T::RejectOrigin.
- proposal_id: The index of a proposal
# <weight>
- Complexity: O(A) where A is the number of approvals
- Db reads and writes: Approvals
# </weight>
Errors:
- ProposalNotApproved: The proposal_id supplied was not found in the approval queue,
i.e., the proposal has not been approved. This could also mean the proposal does not
exist altogether, thus there is no way it would have been approved in the first place.
Attributes
| Name | Type |
|---|---|
| proposal_id | ProposalIndex |
Python
call = substrate.compose_call(
'Treasury', 'remove_approval', {'proposal_id': 'u32'}
)
Events
Proposed
New proposal.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_index | ProposalIndex |
u32 |
Spending
We have ended a spend period and will now allocate funds.
Attributes
| Name | Type | Composition |
|---|---|---|
| budget_remaining | BalanceOf<T, I> |
u128 |
Awarded
Some funds have been allocated.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_index | ProposalIndex |
u32 |
| award | BalanceOf<T, I> |
u128 |
| account | T::AccountId |
AccountId |
Rejected
A proposal was rejected; funds were slashed.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_index | ProposalIndex |
u32 |
| slashed | BalanceOf<T, I> |
u128 |
Burnt
Some of our funds have been burnt.
Attributes
| Name | Type | Composition |
|---|---|---|
| burnt_funds | BalanceOf<T, I> |
u128 |
Rollover
Spending has finished; this is the amount that rolls over until next spend.
Attributes
| Name | Type | Composition |
|---|---|---|
| rollover_balance | BalanceOf<T, I> |
u128 |
Deposit
Some funds have been deposited.
Attributes
| Name | Type | Composition |
|---|---|---|
| value | BalanceOf<T, I> |
u128 |
SpendApproved
A new spend proposal has been approved.
Attributes
| Name | Type | Composition |
|---|---|---|
| proposal_index | ProposalIndex |
u32 |
| amount | BalanceOf<T, I> |
u128 |
| beneficiary | T::AccountId |
AccountId |
Storage functions
ProposalCount
Number of proposals that have been made.
Python
result = substrate.query(
'Treasury', 'ProposalCount', []
)
Return value
'u32'
Proposals
Proposals that have been made.
Python
result = substrate.query(
'Treasury', 'Proposals', ['u32']
)
Return value
{
'beneficiary': 'AccountId',
'bond': 'u128',
'proposer': 'AccountId',
'value': 'u128',
}
Approvals
Proposal indices that have been approved but not yet awarded.
Python
result = substrate.query(
'Treasury', 'Approvals', []
)
Return value
['u32']
Constants
ProposalBond
Fraction of a proposal's value that should be bonded in order to place the proposal. An accepted proposal gets these back. A rejected proposal does not.
Value
50000
Python
constant = substrate.get_constant('Treasury', 'ProposalBond')
ProposalBondMinimum
Minimum amount of funds that should be placed in a deposit for making a proposal.
Value
1000000000000000000
Python
constant = substrate.get_constant('Treasury', 'ProposalBondMinimum')
ProposalBondMaximum
Maximum amount of funds that should be placed in a deposit for making a proposal.
Value
None
Python
constant = substrate.get_constant('Treasury', 'ProposalBondMaximum')
SpendPeriod
Period between successive spends.
Value
14400
Python
constant = substrate.get_constant('Treasury', 'SpendPeriod')
Burn
Percentage of spare funds (if any) that are burnt per spend period.
Value
10000
Python
constant = substrate.get_constant('Treasury', 'Burn')
PalletId
The treasury's pallet id, used for deriving its sovereign account ID.
Value
'0x70792f7472737279'
Python
constant = substrate.get_constant('Treasury', 'PalletId')
MaxApprovals
The maximum number of approvals that can wait in the spending queue.
NOTE: This parameter is also used within the Bounties Pallet extension if enabled.
Value
100
Python
constant = substrate.get_constant('Treasury', 'MaxApprovals')
Errors
InsufficientProposersBalance
Proposer's balance is too low.
InvalidIndex
No proposal or bounty at that index.
TooManyApprovals
Too many approvals in the queue.
InsufficientPermission
The spend origin is valid but the amount it is allowed to spend is lower than the amount to be spent.
ProposalNotApproved
Proposal has not been approved.
Contracts
Calls
call
Makes a call to an account, optionally transferring some balance.
# Parameters
dest: Address of the contract to call.value: The balance to transfer from theorigintodest.gas_limit: The gas limit enforced when executing the constructor.storage_deposit_limit: The maximum amount of balance that can be charged from the caller to pay for the storage consumed.-
data: The input data to pass to the contract. -
If the account is a smart-contract account, the associated code will be executed and any value will be transferred.
- If the account is a regular account, any value will be transferred.
- If no account exists and the call value is not less than
existential_deposit, a regular account will be created and any value will be transferred.
Attributes
| Name | Type |
|---|---|
| dest | <T::Lookup as StaticLookup>::Source |
| value | BalanceOf<T> |
| gas_limit | Weight |
| storage_deposit_limit | Option<<BalanceOf<T> as codec::HasCompact>::Type> |
| data | Vec<u8> |
Python
call = substrate.compose_call(
'Contracts', 'call', {
'data': 'Bytes',
'dest': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
'gas_limit': 'u64',
'storage_deposit_limit': (
None,
'u128',
),
'value': 'u128',
}
)
instantiate_with_code
Instantiates a new contract from the supplied code optionally transferring
some balance.
This dispatchable has the same effect as calling [Self::upload_code] +
[Self::instantiate]. Bundling them together provides efficiency gains. Please
also check the documentation of [Self::upload_code].
# Parameters
value: The balance to transfer from theoriginto the newly created contract.gas_limit: The gas limit enforced when executing the constructor.storage_deposit_limit: The maximum amount of balance that can be charged/reserved from the caller to pay for the storage consumed.code: The contract code to deploy in raw bytes.data: The input data to pass to the contract constructor.salt: Used for the address derivation. See [Pallet::contract_address].
Instantiation is executed as follows:
- The supplied
codeis instrumented, deployed, and acode_hashis created for that code. - If the
code_hashalready exists on the chain the underlyingcodewill be shared. - The destination address is computed based on the sender, code_hash and the salt.
- The smart-contract account is created at the computed address.
- The
valueis transferred to the new account. - The
deployfunction is executed in the context of the newly-created account.
Attributes
| Name | Type |
|---|---|
| value | BalanceOf<T> |
| gas_limit | Weight |
| storage_deposit_limit | Option<<BalanceOf<T> as codec::HasCompact>::Type> |
| code | Vec<u8> |
| data | Vec<u8> |
| salt | Vec<u8> |
Python
call = substrate.compose_call(
'Contracts', 'instantiate_with_code', {
'code': 'Bytes',
'data': 'Bytes',
'gas_limit': 'u64',
'salt': 'Bytes',
'storage_deposit_limit': (
None,
'u128',
),
'value': 'u128',
}
)
instantiate
Instantiates a contract from a previously deployed wasm binary.
This function is identical to [Self::instantiate_with_code] but without the
code deployment step. Instead, the code_hash of an on-chain deployed wasm binary
must be supplied.
Attributes
| Name | Type |
|---|---|
| value | BalanceOf<T> |
| gas_limit | Weight |
| storage_deposit_limit | Option<<BalanceOf<T> as codec::HasCompact>::Type> |
| code_hash | CodeHash<T> |
| data | Vec<u8> |
| salt | Vec<u8> |
Python
call = substrate.compose_call(
'Contracts', 'instantiate', {
'code_hash': '[u8; 32]',
'data': 'Bytes',
'gas_limit': 'u64',
'salt': 'Bytes',
'storage_deposit_limit': (
None,
'u128',
),
'value': 'u128',
}
)
upload_code
Upload new code without instantiating a contract from it.
If the code does not already exist a deposit is reserved from the caller
and unreserved only when [Self::remove_code] is called. The size of the reserve
depends on the instrumented size of the the supplied code.
If the code already exists in storage it will still return Ok and upgrades
the in storage version to the current
InstructionWeights::version.
# Note
Anyone can instantiate a contract from any uploaded code and thus prevent its removal.
To avoid this situation a constructor could employ access control so that it can
only be instantiated by permissioned entities. The same is true when uploading
through [Self::instantiate_with_code].
Attributes
| Name | Type |
|---|---|
| code | Vec<u8> |
| storage_deposit_limit | Option<<BalanceOf<T> as codec::HasCompact>::Type> |
Python
call = substrate.compose_call(
'Contracts', 'upload_code', {
'code': 'Bytes',
'storage_deposit_limit': (
None,
'u128',
),
}
)
remove_code
Remove the code stored under code_hash and refund the deposit to its owner.
A code can only be removed by its original uploader (its owner) and only if it is not used by any contract.
Attributes
| Name | Type |
|---|---|
| code_hash | CodeHash<T> |
Python
call = substrate.compose_call(
'Contracts', 'remove_code', {'code_hash': '[u8; 32]'}
)
set_code
Privileged function that changes the code of an existing contract.
This takes care of updating refcounts and all other necessary operations. Returns
an error if either the code_hash or dest do not exist.
# Note
This does not change the address of the contract in question. This means that the contract address is no longer derived from its code hash after calling this dispatchable.
Attributes
| Name | Type |
|---|---|
| dest | <T::Lookup as StaticLookup>::Source |
| code_hash | CodeHash<T> |
Python
call = substrate.compose_call(
'Contracts', 'set_code', {
'code_hash': '[u8; 32]',
'dest': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
}
)
Events
Instantiated
Contract deployed by address at the specified address.
Attributes
| Name | Type | Composition |
|---|---|---|
| deployer | T::AccountId |
AccountId |
| contract | T::AccountId |
AccountId |
Terminated
Contract has been removed.
# Note
The only way for a contract to be removed and emitting this event is by calling
seal_terminate.
Attributes
| Name | Type | Composition |
|---|---|---|
| contract | T::AccountId |
AccountId |
| beneficiary | T::AccountId |
AccountId |
CodeStored
Code with the specified hash has been stored.
Attributes
| Name | Type | Composition |
|---|---|---|
| code_hash | T::Hash |
[u8; 32] |
ContractEmitted
A custom event emitted by the contract.
Attributes
| Name | Type | Composition |
|---|---|---|
| contract | T::AccountId |
AccountId |
| data | Vec<u8> |
Bytes |
CodeRemoved
A code with the specified hash was removed.
Attributes
| Name | Type | Composition |
|---|---|---|
| code_hash | T::Hash |
[u8; 32] |
ContractCodeUpdated
A contract's code was updated.
Attributes
| Name | Type | Composition |
|---|---|---|
| contract | T::AccountId |
AccountId |
| new_code_hash | T::Hash |
[u8; 32] |
| old_code_hash | T::Hash |
[u8; 32] |
Storage functions
PristineCode
A mapping from an original code hash to the original code, untouched by instrumentation.
Python
result = substrate.query(
'Contracts', 'PristineCode', ['[u8; 32]']
)
Return value
'Bytes'
CodeStorage
A mapping between an original code hash and instrumented wasm code, ready for execution.
Python
result = substrate.query(
'Contracts', 'CodeStorage', ['[u8; 32]']
)
Return value
{
'code': 'Bytes',
'initial': 'u32',
'instruction_weights_version': 'u32',
'maximum': 'u32',
}
OwnerInfoOf
A mapping between an original code hash and its owner information.
Python
result = substrate.query(
'Contracts', 'OwnerInfoOf', ['[u8; 32]']
)
Return value
{'deposit': 'u128', 'owner': 'AccountId', 'refcount': 'u64'}
Nonce
This is a monotonic counter incremented on contract instantiation.
This is used in order to generate unique trie ids for contracts. The trie id of a new contract is calculated from hash(account_id, nonce). The nonce is required because otherwise the following sequence would lead to a possible collision of storage:
- Create a new contract.
- Terminate the contract.
- Immediately recreate the contract with the same account_id.
This is bad because the contents of a trie are deleted lazily and there might be storage of the old instantiation still in it when the new contract is created. Please note that we can't replace the counter by the block number because the sequence above can happen in the same block. We also can't keep the account counter in memory only because storage is the only way to communicate across different extrinsics in the same block.
# Note
Do not use it to determine the number of contracts. It won't be decremented if a contract is destroyed.
Python
result = substrate.query(
'Contracts', 'Nonce', []
)
Return value
'u64'
ContractInfoOf
The code associated with a given account.
TWOX-NOTE: SAFE since AccountId is a secure hash.
Python
result = substrate.query(
'Contracts', 'ContractInfoOf', ['AccountId']
)
Return value
{'code_hash': '[u8; 32]', 'storage_deposit': 'u128', 'trie_id': 'Bytes'}
DeletionQueue
Evicted contracts that await child trie deletion.
Child trie deletion is a heavy operation depending on the amount of storage items
stored in said trie. Therefore this operation is performed lazily in on_initialize.
Python
result = substrate.query(
'Contracts', 'DeletionQueue', []
)
Return value
[{'trie_id': 'Bytes'}]
Constants
Schedule
Cost schedule and limits.
Value
{
'host_fn_weights': {
'address': 509862,
'balance': 1460387,
'block_number': 501675,
'call': 310761362,
'call_per_cloned_byte': 121475,
'call_transfer_surcharge': 144789412,
'caller': 512337,
'caller_is_origin': 214312,
'clear_storage': 130061662,
'clear_storage_per_byte': 8557,
'code_hash': 29611262,
'contains_storage': 28888537,
'contains_storage_per_byte': 2376,
'debug_message': 408962,
'delegate_call': 209651750,
'deposit_event': 2999387,
'deposit_event_per_byte': 825,
'deposit_event_per_topic': 128308587,
'ecdsa_recover': 38374437,
'ecdsa_to_eth_address': 25731287,
'gas': 241612,
'gas_left': 507500,
'get_storage': 29227150,
'get_storage_per_byte': 3419,
'hash_blake2_128': 640800,
'hash_blake2_128_per_byte': 1159,
'hash_blake2_256': 645550,
'hash_blake2_256_per_byte': 1160,
'hash_keccak_256': 921600,
'hash_keccak_256_per_byte': 2999,
'hash_sha2_256': 766387,
'hash_sha2_256_per_byte': 3914,
'input': 504100,
'input_per_byte': 117,
'instantiate': 765019112,
'instantiate_per_salt_byte': 1517,
'instantiate_transfer_surcharge': 10324,
'is_contract': 28845600,
'minimum_balance': 505987,
'now': 503137,
'own_code_hash': 555562,
'r#return': 0,
'random': 1667975,
'return_per_byte': 178,
'set_code_hash': 133117250,
'set_storage': 130299962,
'set_storage_per_new_byte': 8670,
'set_storage_per_old_byte': 8539,
'take_storage': 130409762,
'take_storage_per_byte': 9642,
'terminate': 659377000,
'transfer': 143757362,
'value_transferred': 508775,
'weight_to_fee': 1233437,
},
'instruction_weights': {
'br': 3290,
'br_if': 5210,
'br_table': 6850,
'br_table_per_entry': 40,
'call': 65320,
'call_indirect': 82240,
'call_indirect_per_param': 1630,
'global_get': 8860,
'global_set': 10550,
'i32wrapi64': 2660,
'i64add': 4100,
'i64and': 4090,
'i64clz': 2720,
'i64const': 3060,
'i64ctz': 2810,
'i64divs': 10800,
'i64divu': 11550,
'i64eq': 4320,
'i64eqz': 2890,
'i64extendsi32': 2540,
'i64extendui32': 2560,
'i64ges': 4300,
'i64geu': 4350,
'i64gts': 4310,
'i64gtu': 4350,
'i64les': 4320,
'i64leu': 4500,
'i64load': 7120,
'i64lts': 4370,
'i64ltu': 4420,
'i64mul': 4060,
'i64ne': 4420,
'i64or': 4120,
'i64popcnt': 2790,
'i64rems': 11090,
'i64remu': 11460,
'i64rotl': 4400,
'i64rotr': 4420,
'i64shl': 4290,
'i64shrs': 4410,
'i64shru': 4400,
'i64store': 8150,
'i64sub': 4130,
'i64xor': 4030,
'local_get': 3180,
'local_set': 3820,
'local_tee': 2970,
'memory_current': 3550,
'memory_grow': 11675500,
'r#if': 10340,
'select': 5490,
'version': 2,
},
'limits': {
'br_table_size': 256,
'call_depth': 32,
'event_topics': 4,
'globals': 256,
'memory_pages': 16,
'parameters': 128,
'payload_len': 16384,
'stack_height': None,
'subject_len': 32,
'table_size': 4096,
},
}
Python
constant = substrate.get_constant('Contracts', 'Schedule')
DeletionQueueDepth
The maximum number of contracts that can be pending for deletion.
When a contract is deleted by calling seal_terminate it becomes inaccessible
immediately, but the deletion of the storage items it has accumulated is performed
later. The contract is put into the deletion queue. This defines how many
contracts can be queued up at the same time. If that limit is reached seal_terminate
will fail. The action must be retried in a later block in that case.
The reasons for limiting the queue depth are:
- The queue is in storage in order to be persistent between blocks. We want to limit the amount of storage that can be consumed.
- The queue is stored in a vector and needs to be decoded as a whole when reading it at the end of each block. Longer queues take more weight to decode and hence limit the amount of items that can be deleted per block.
Value
5144
Python
constant = substrate.get_constant('Contracts', 'DeletionQueueDepth')
DeletionWeightLimit
The maximum amount of weight that can be consumed per block for lazy trie removal.
The amount of weight that is dedicated per block to work on the deletion queue. Larger
values allow more trie keys to be deleted in each block but reduce the amount of
weight that is left for transactions. See [Self::DeletionQueueDepth] for more
information about the deletion queue.
Value
50000000000
Python
constant = substrate.get_constant('Contracts', 'DeletionWeightLimit')
DepositPerByte
The amount of balance a caller has to pay for each byte of storage.
# Note
Changing this value for an existing chain might need a storage migration.
Value
60000000000000000
Python
constant = substrate.get_constant('Contracts', 'DepositPerByte')
ContractAccessWeight
The weight per byte of code that is charged when loading a contract from storage.
Currently, FRAME only charges fees for computation incurred but not for PoV consumption caused for storage access. This is usually not exploitable because accessing storage carries some substantial weight costs, too. However in case of contract code very much PoV consumption can be caused while consuming very little computation. This could be used to keep the chain busy without paying the proper fee for it. Until this is resolved we charge from the weight meter for contract access.
For more information check out: <https://github.com/paritytech/substrate/issues/10301>
[DefaultContractAccessWeight] is a safe default to be used for Polkadot or Kusama
parachains.
# Note
This is only relevant for parachains. Set to zero in case of a standalone chain.
Value
286102
Python
constant = substrate.get_constant('Contracts', 'ContractAccessWeight')
DepositPerItem
The amount of balance a caller has to pay for each storage item.
# Note
Changing this value for an existing chain might need a storage migration.
Value
150000000000000000
Python
constant = substrate.get_constant('Contracts', 'DepositPerItem')
Errors
InvalidScheduleVersion
A new schedule must have a greater version than the current one.
InvalidCallFlags
Invalid combination of flags supplied to seal_call or seal_delegate_call.
OutOfGas
The executed contract exhausted its gas limit.
OutputBufferTooSmall
The output buffer supplied to a contract API call was too small.
TransferFailed
Performing the requested transfer failed. Probably because there isn't enough free balance in the sender's account.
MaxCallDepthReached
Performing a call was denied because the calling depth reached the limit of what is specified in the schedule.
ContractNotFound
No contract was found at the specified address.
CodeTooLarge
The code supplied to instantiate_with_code exceeds the limit specified in the
current schedule.
CodeNotFound
No code could be found at the supplied code hash.
OutOfBounds
A buffer outside of sandbox memory was passed to a contract API function.
DecodingFailed
Input passed to a contract API function failed to decode as expected type.
ContractTrapped
Contract trapped during execution.
ValueTooLarge
The size defined in T::MaxValueSize was exceeded.
TerminatedWhileReentrant
Termination of a contract is not allowed while the contract is already
on the call stack. Can be triggered by seal_terminate.
InputForwarded
seal_call forwarded this contracts input. It therefore is no longer available.
RandomSubjectTooLong
The subject passed to seal_random exceeds the limit.
TooManyTopics
The amount of topics passed to seal_deposit_events exceeds the limit.
DuplicateTopics
The topics passed to seal_deposit_events contains at least one duplicate.
NoChainExtension
The chain does not provide a chain extension. Calling the chain extension results in this error. Note that this usually shouldn't happen as deploying such contracts is rejected.
DeletionQueueFull
Removal of a contract failed because the deletion queue is full.
This can happen when calling seal_terminate.
The queue is filled by deleting contracts and emptied by a fixed amount each block.
Trying again during another block is the only way to resolve this issue.
DuplicateContract
A contract with the same AccountId already exists.
TerminatedInConstructor
A contract self destructed in its constructor.
This can be triggered by a call to seal_terminate.
DebugMessageInvalidUTF8
The debug message specified to seal_debug_message does contain invalid UTF-8.
ReentranceDenied
A call tried to invoke a contract that is flagged as non-reentrant.
StorageDepositNotEnoughFunds
Origin doesn't have enough balance to pay the required storage deposits.
StorageDepositLimitExhausted
More storage was created than allowed by the storage deposit limit.
CodeInUse
Code removal was denied because the code is still in use by at least one contract.
ContractReverted
The contract ran to completion but decided to revert its storage changes.
Please note that this error is only returned from extrinsics. When called directly
or via RPC an Ok will be returned. In this case the caller needs to inspect the flags
to determine whether a reversion has taken place.
CodeRejected
The contract's code was found to be invalid during validation or instrumentation. A more detailed error can be found on the node console if debug messages are enabled or in the debug buffer which is returned to RPC clients.
EVM
Calls
withdraw
Withdraw balance from EVM into currency/balances pallet.
Attributes
| Name | Type |
|---|---|
| address | H160 |
| value | BalanceOf<T> |
Python
call = substrate.compose_call(
'EVM', 'withdraw', {
'address': '[u8; 20]',
'value': 'u128',
}
)
call
Issue an EVM call operation. This is similar to a message call transaction in Ethereum.
Attributes
| Name | Type |
|---|---|
| source | H160 |
| target | H160 |
| input | Vec<u8> |
| value | U256 |
| gas_limit | u64 |
| max_fee_per_gas | U256 |
| max_priority_fee_per_gas | Option<U256> |
| nonce | Option<U256> |
| access_list | Vec<(H160, Vec<H256>)> |
Python
call = substrate.compose_call(
'EVM', 'call', {
'access_list': [
('[u8; 20]', ['[u8; 32]']),
],
'gas_limit': 'u64',
'input': 'Bytes',
'max_fee_per_gas': '[u64; 4]',
'max_priority_fee_per_gas': (
None,
'[u64; 4]',
),
'nonce': (None, '[u64; 4]'),
'source': '[u8; 20]',
'target': '[u8; 20]',
'value': '[u64; 4]',
}
)
create
Issue an EVM create operation. This is similar to a contract creation transaction in Ethereum.
Attributes
| Name | Type |
|---|---|
| source | H160 |
| init | Vec<u8> |
| value | U256 |
| gas_limit | u64 |
| max_fee_per_gas | U256 |
| max_priority_fee_per_gas | Option<U256> |
| nonce | Option<U256> |
| access_list | Vec<(H160, Vec<H256>)> |
Python
call = substrate.compose_call(
'EVM', 'create', {
'access_list': [
('[u8; 20]', ['[u8; 32]']),
],
'gas_limit': 'u64',
'init': 'Bytes',
'max_fee_per_gas': '[u64; 4]',
'max_priority_fee_per_gas': (
None,
'[u64; 4]',
),
'nonce': (None, '[u64; 4]'),
'source': '[u8; 20]',
'value': '[u64; 4]',
}
)
create2
Issue an EVM create2 operation.
Attributes
| Name | Type |
|---|---|
| source | H160 |
| init | Vec<u8> |
| salt | H256 |
| value | U256 |
| gas_limit | u64 |
| max_fee_per_gas | U256 |
| max_priority_fee_per_gas | Option<U256> |
| nonce | Option<U256> |
| access_list | Vec<(H160, Vec<H256>)> |
Python
call = substrate.compose_call(
'EVM', 'create2', {
'access_list': [
('[u8; 20]', ['[u8; 32]']),
],
'gas_limit': 'u64',
'init': 'Bytes',
'max_fee_per_gas': '[u64; 4]',
'max_priority_fee_per_gas': (
None,
'[u64; 4]',
),
'nonce': (None, '[u64; 4]'),
'salt': '[u8; 32]',
'source': '[u8; 20]',
'value': '[u64; 4]',
}
)
Events
Log
Ethereum events from contracts.
Attributes
| Name | Type | Composition |
|---|---|---|
| None | Log |
{'address': '[u8; 20]', 'topics': ['[u8; 32]'], 'data': 'Bytes'} |
Created
A contract has been created at given [address].
Attributes
| Name | Type | Composition |
|---|---|---|
| None | H160 |
[u8; 20] |
CreatedFailed
A [contract] was attempted to be created, but the execution failed.
Attributes
| Name | Type | Composition |
|---|---|---|
| None | H160 |
[u8; 20] |
Executed
A [contract] has been executed successfully with states applied.
Attributes
| Name | Type | Composition |
|---|---|---|
| None | H160 |
[u8; 20] |
ExecutedFailed
A [contract] has been executed with errors. States are reverted with only gas fees applied.
Attributes
| Name | Type | Composition |
|---|---|---|
| None | H160 |
[u8; 20] |
BalanceDeposit
A deposit has been made at a given address. [sender, address, value]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | H160 |
[u8; 20] |
| None | U256 |
[u64; 4] |
BalanceWithdraw
A withdrawal has been made from a given address. [sender, address, value]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | H160 |
[u8; 20] |
| None | U256 |
[u64; 4] |
Storage functions
AccountCodes
Python
result = substrate.query(
'EVM', 'AccountCodes', ['[u8; 20]']
)
Return value
'Bytes'
AccountStorages
Python
result = substrate.query(
'EVM', 'AccountStorages', ['[u8; 20]', '[u8; 32]']
)
Return value
'[u8; 32]'
Errors
BalanceLow
Not enough balance to perform action
FeeOverflow
Calculating total fee overflowed
PaymentOverflow
Calculating total payment overflowed
WithdrawFailed
Withdraw fee failed
GasPriceTooLow
Gas price is too low.
InvalidNonce
Nonce is invalid
Ethereum
Calls
transact
Transact an Ethereum transaction.
Attributes
| Name | Type |
|---|---|
| transaction | Transaction |
Python
call = substrate.compose_call(
'Ethereum', 'transact', {
'transaction': {
'EIP1559': {
'access_list': [
{
'address': '[u8; 20]',
'storage_keys': [
'[u8; 32]',
],
},
],
'action': {
'Call': '[u8; 20]',
'Create': None,
},
'chain_id': 'u64',
'gas_limit': '[u64; 4]',
'input': 'Bytes',
'max_fee_per_gas': '[u64; 4]',
'max_priority_fee_per_gas': '[u64; 4]',
'nonce': '[u64; 4]',
'odd_y_parity': 'bool',
'r': '[u8; 32]',
's': '[u8; 32]',
'value': '[u64; 4]',
},
'EIP2930': {
'access_list': [
{
'address': '[u8; 20]',
'storage_keys': [
'[u8; 32]',
],
},
],
'action': {
'Call': '[u8; 20]',
'Create': None,
},
'chain_id': 'u64',
'gas_limit': '[u64; 4]',
'gas_price': '[u64; 4]',
'input': 'Bytes',
'nonce': '[u64; 4]',
'odd_y_parity': 'bool',
'r': '[u8; 32]',
's': '[u8; 32]',
'value': '[u64; 4]',
},
'Legacy': {
'action': {
'Call': '[u8; 20]',
'Create': None,
},
'gas_limit': '[u64; 4]',
'gas_price': '[u64; 4]',
'input': 'Bytes',
'nonce': '[u64; 4]',
'signature': {
'r': '[u8; 32]',
's': '[u8; 32]',
'v': 'u64',
},
'value': '[u64; 4]',
},
},
}
)
Events
Executed
An ethereum transaction was successfully executed. [from, to/contract_address, transaction_hash, exit_reason]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | H160 |
[u8; 20] |
| None | H160 |
[u8; 20] |
| None | H256 |
[u8; 32] |
| None | ExitReason |
{'Succeed': ('Stopped', 'Returned', 'Suicided'), 'Error': {'StackUnderflow': None, 'StackOverflow': None, 'InvalidJump': None, 'InvalidRange': None, 'DesignatedInvalid': None, 'CallTooDeep': None, 'CreateCollision': None, 'CreateContractLimit': None, 'OutOfOffset': None, 'OutOfGas': None, 'OutOfFund': None, 'PCUnderflow': None, 'CreateEmpty': None, 'Other': 'Str', None: None, 'InvalidCode': 'u8'}, 'Revert': ('Reverted',), 'Fatal': {'NotSupported': None, 'UnhandledInterrupt': None, 'CallErrorAsFatal': {'StackUnderflow': None, 'StackOverflow': None, 'InvalidJump': None, 'InvalidRange': None, 'DesignatedInvalid': None, 'CallTooDeep': None, 'CreateCollision': None, 'CreateContractLimit': None, 'OutOfOffset': None, 'OutOfGas': None, 'OutOfFund': None, 'PCUnderflow': None, 'CreateEmpty': None, 'Other': 'Str', None: None, 'InvalidCode': 'u8'}, 'Other': 'Str'}} |
Storage functions
Pending
Current building block's transactions and receipts.
Python
result = substrate.query(
'Ethereum', 'Pending', []
)
Return value
[
(
{
'EIP1559': {
'access_list': ['scale_info::269'],
'action': {'Call': '[u8; 20]', 'Create': None},
'chain_id': 'u64',
'gas_limit': '[u64; 4]',
'input': 'Bytes',
'max_fee_per_gas': '[u64; 4]',
'max_priority_fee_per_gas': '[u64; 4]',
'nonce': '[u64; 4]',
'odd_y_parity': 'bool',
'r': '[u8; 32]',
's': '[u8; 32]',
'value': '[u64; 4]',
},
'EIP2930': {
'access_list': ['scale_info::269'],
'action': {'Call': '[u8; 20]', 'Create': None},
'chain_id': 'u64',
'gas_limit': '[u64; 4]',
'gas_price': '[u64; 4]',
'input': 'Bytes',
'nonce': '[u64; 4]',
'odd_y_parity': 'bool',
'r': '[u8; 32]',
's': '[u8; 32]',
'value': '[u64; 4]',
},
'Legacy': {
'action': {'Call': '[u8; 20]', 'Create': None},
'gas_limit': '[u64; 4]',
'gas_price': '[u64; 4]',
'input': 'Bytes',
'nonce': '[u64; 4]',
'signature': {'r': '[u8; 32]', 's': '[u8; 32]', 'v': 'u64'},
'value': '[u64; 4]',
},
},
{
'contract_address': (None, '[u8; 20]'),
'from': '[u8; 20]',
'logs': [
{
'address': '[u8; 20]',
'data': 'Bytes',
'topics': ['[u8; 32]'],
},
],
'logs_bloom': '[u8; 256]',
'to': (None, '[u8; 20]'),
'transaction_hash': '[u8; 32]',
'transaction_index': 'u32',
},
{
'EIP1559': {
'logs': ['scale_info::51'],
'logs_bloom': '[u8; 256]',
'status_code': 'u8',
'used_gas': '[u64; 4]',
},
'EIP2930': {
'logs': ['scale_info::51'],
'logs_bloom': '[u8; 256]',
'status_code': 'u8',
'used_gas': '[u64; 4]',
},
'Legacy': {
'logs': ['scale_info::51'],
'logs_bloom': '[u8; 256]',
'status_code': 'u8',
'used_gas': '[u64; 4]',
},
},
),
]
CurrentBlock
The current Ethereum block.
Python
result = substrate.query(
'Ethereum', 'CurrentBlock', []
)
Return value
{
'header': {
'beneficiary': '[u8; 20]',
'difficulty': '[u64; 4]',
'extra_data': 'Bytes',
'gas_limit': '[u64; 4]',
'gas_used': '[u64; 4]',
'logs_bloom': '[u8; 256]',
'mix_hash': '[u8; 32]',
'nonce': '[u8; 8]',
'number': '[u64; 4]',
'ommers_hash': '[u8; 32]',
'parent_hash': '[u8; 32]',
'receipts_root': '[u8; 32]',
'state_root': '[u8; 32]',
'timestamp': 'u64',
'transactions_root': '[u8; 32]',
},
'ommers': [
{
'beneficiary': '[u8; 20]',
'difficulty': '[u64; 4]',
'extra_data': 'Bytes',
'gas_limit': '[u64; 4]',
'gas_used': '[u64; 4]',
'logs_bloom': '[u8; 256]',
'mix_hash': '[u8; 32]',
'nonce': '[u8; 8]',
'number': '[u64; 4]',
'ommers_hash': '[u8; 32]',
'parent_hash': '[u8; 32]',
'receipts_root': '[u8; 32]',
'state_root': '[u8; 32]',
'timestamp': 'u64',
'transactions_root': '[u8; 32]',
},
],
'transactions': [
{
'EIP1559': {
'access_list': ['scale_info::269'],
'action': {'Call': '[u8; 20]', 'Create': None},
'chain_id': 'u64',
'gas_limit': '[u64; 4]',
'input': 'Bytes',
'max_fee_per_gas': '[u64; 4]',
'max_priority_fee_per_gas': '[u64; 4]',
'nonce': '[u64; 4]',
'odd_y_parity': 'bool',
'r': '[u8; 32]',
's': '[u8; 32]',
'value': '[u64; 4]',
},
'EIP2930': {
'access_list': ['scale_info::269'],
'action': {'Call': '[u8; 20]', 'Create': None},
'chain_id': 'u64',
'gas_limit': '[u64; 4]',
'gas_price': '[u64; 4]',
'input': 'Bytes',
'nonce': '[u64; 4]',
'odd_y_parity': 'bool',
'r': '[u8; 32]',
's': '[u8; 32]',
'value': '[u64; 4]',
},
'Legacy': {
'action': {'Call': '[u8; 20]', 'Create': None},
'gas_limit': '[u64; 4]',
'gas_price': '[u64; 4]',
'input': 'Bytes',
'nonce': '[u64; 4]',
'signature': {'r': '[u8; 32]', 's': '[u8; 32]', 'v': 'u64'},
'value': '[u64; 4]',
},
},
],
}
CurrentReceipts
The current Ethereum receipts.
Python
result = substrate.query(
'Ethereum', 'CurrentReceipts', []
)
Return value
[
{
'EIP1559': {
'logs': [
{
'address': '[u8; 20]',
'data': 'Bytes',
'topics': ['[u8; 32]'],
},
],
'logs_bloom': '[u8; 256]',
'status_code': 'u8',
'used_gas': '[u64; 4]',
},
'EIP2930': {
'logs': [
{
'address': '[u8; 20]',
'data': 'Bytes',
'topics': ['[u8; 32]'],
},
],
'logs_bloom': '[u8; 256]',
'status_code': 'u8',
'used_gas': '[u64; 4]',
},
'Legacy': {
'logs': [
{
'address': '[u8; 20]',
'data': 'Bytes',
'topics': ['[u8; 32]'],
},
],
'logs_bloom': '[u8; 256]',
'status_code': 'u8',
'used_gas': '[u64; 4]',
},
},
]
CurrentTransactionStatuses
The current transaction statuses.
Python
result = substrate.query(
'Ethereum', 'CurrentTransactionStatuses', []
)
Return value
[
{
'contract_address': (None, '[u8; 20]'),
'from': '[u8; 20]',
'logs': [
{'address': '[u8; 20]', 'data': 'Bytes', 'topics': ['[u8; 32]']},
],
'logs_bloom': '[u8; 256]',
'to': (None, '[u8; 20]'),
'transaction_hash': '[u8; 32]',
'transaction_index': 'u32',
},
]
BlockHash
Python
result = substrate.query(
'Ethereum', 'BlockHash', ['[u64; 4]']
)
Return value
'[u8; 32]'
Errors
InvalidSignature
Signature is invalid.
PreLogExists
Pre-log is present, therefore transact is not allowed.
Scheduler
Calls
schedule
Anonymously schedule a task.
Attributes
| Name | Type |
|---|---|
| when | T::BlockNumber |
| maybe_periodic | Option<schedule::Period<T::BlockNumber>> |
| priority | schedule::Priority |
| call | Box<CallOrHashOf<T>> |
Python
call = substrate.compose_call(
'Scheduler', 'schedule', {
'call': {
'Hash': '[u8; 32]',
'Value': 'Call',
},
'maybe_periodic': (
None,
('u32', 'u32'),
),
'priority': 'u8',
'when': 'u32',
}
)
cancel
Cancel an anonymously scheduled task.
Attributes
| Name | Type |
|---|---|
| when | T::BlockNumber |
| index | u32 |
Python
call = substrate.compose_call(
'Scheduler', 'cancel', {'index': 'u32', 'when': 'u32'}
)
schedule_named
Schedule a named task.
Attributes
| Name | Type |
|---|---|
| id | Vec<u8> |
| when | T::BlockNumber |
| maybe_periodic | Option<schedule::Period<T::BlockNumber>> |
| priority | schedule::Priority |
| call | Box<CallOrHashOf<T>> |
Python
call = substrate.compose_call(
'Scheduler', 'schedule_named', {
'call': {
'Hash': '[u8; 32]',
'Value': 'Call',
},
'id': 'Bytes',
'maybe_periodic': (
None,
('u32', 'u32'),
),
'priority': 'u8',
'when': 'u32',
}
)
cancel_named
Cancel a named scheduled task.
Attributes
| Name | Type |
|---|---|
| id | Vec<u8> |
Python
call = substrate.compose_call(
'Scheduler', 'cancel_named', {'id': 'Bytes'}
)
schedule_after
Anonymously schedule a task after a delay.
# <weight>
Same as [schedule].
# </weight>
Attributes
| Name | Type |
|---|---|
| after | T::BlockNumber |
| maybe_periodic | Option<schedule::Period<T::BlockNumber>> |
| priority | schedule::Priority |
| call | Box<CallOrHashOf<T>> |
Python
call = substrate.compose_call(
'Scheduler', 'schedule_after', {
'after': 'u32',
'call': {
'Hash': '[u8; 32]',
'Value': 'Call',
},
'maybe_periodic': (
None,
('u32', 'u32'),
),
'priority': 'u8',
}
)
schedule_named_after
Schedule a named task after a delay.
# <weight>
Same as schedule_named.
# </weight>
Attributes
| Name | Type |
|---|---|
| id | Vec<u8> |
| after | T::BlockNumber |
| maybe_periodic | Option<schedule::Period<T::BlockNumber>> |
| priority | schedule::Priority |
| call | Box<CallOrHashOf<T>> |
Python
call = substrate.compose_call(
'Scheduler', 'schedule_named_after', {
'after': 'u32',
'call': {
'Hash': '[u8; 32]',
'Value': 'Call',
},
'id': 'Bytes',
'maybe_periodic': (
None,
('u32', 'u32'),
),
'priority': 'u8',
}
)
Events
Scheduled
Scheduled some task.
Attributes
| Name | Type | Composition |
|---|---|---|
| when | T::BlockNumber |
u32 |
| index | u32 |
u32 |
Canceled
Canceled some task.
Attributes
| Name | Type | Composition |
|---|---|---|
| when | T::BlockNumber |
u32 |
| index | u32 |
u32 |
Dispatched
Dispatched some task.
Attributes
| Name | Type | Composition |
|---|---|---|
| task | TaskAddress<T::BlockNumber> |
('u32', 'u32') |
| id | Option<Vec<u8>> |
(None, 'Bytes') |
| result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer')}} |
CallLookupFailed
The call for the provided hash was not found so the task has been aborted.
Attributes
| Name | Type | Composition |
|---|---|---|
| task | TaskAddress<T::BlockNumber> |
('u32', 'u32') |
| id | Option<Vec<u8>> |
(None, 'Bytes') |
| error | LookupError |
('Unknown', 'BadFormat') |
Storage functions
Agenda
Items to be executed, indexed by the block number that they should be executed on.
Python
result = substrate.query(
'Scheduler', 'Agenda', ['u32']
)
Return value
[
(
None,
{
'call': {'Hash': '[u8; 32]', 'Value': 'Call'},
'maybe_id': (None, 'Bytes'),
'maybe_periodic': (None, ('u32', 'u32')),
'origin': {
'system': {'None': None, 'Root': None, 'Signed': 'AccountId'},
None: None,
'Council': {
'Member': 'AccountId',
'Members': ('u32', 'u32'),
'_Phantom': None,
},
'CumulusXcm': {'Relay': None, 'SiblingParachain': 'u32'},
'Ethereum': {'EthereumTransaction': '[u8; 20]'},
'PolkadotXcm': {
'Response': 'scale_info::90',
'Xcm': 'scale_info::90',
},
'TechnicalCommittee': {
'Member': 'AccountId',
'Members': ('u32', 'u32'),
'_Phantom': None,
},
'Void': (),
},
'priority': 'u8',
},
),
]
Lookup
Lookup from identity to the block number and index of the task.
Python
result = substrate.query(
'Scheduler', 'Lookup', ['Bytes']
)
Return value
('u32', 'u32')
Constants
MaximumWeight
The maximum weight that may be scheduled per block for any dispatchables of less
priority than schedule::HARD_DEADLINE.
Value
200000000000
Python
constant = substrate.get_constant('Scheduler', 'MaximumWeight')
MaxScheduledPerBlock
The maximum number of scheduled calls in the queue for a single block. Not strictly enforced, but used for weight estimation.
Value
50
Python
constant = substrate.get_constant('Scheduler', 'MaxScheduledPerBlock')
Errors
FailedToSchedule
Failed to schedule a call
NotFound
Cannot find the scheduled call.
TargetBlockNumberInPast
Given target block number is in the past.
RescheduleNoChange
Reschedule failed because it does not change scheduled time.
Utility
Calls
batch
Send a batch of dispatch calls.
May be called from any origin.
calls: The calls to be dispatched from the same origin. The number of call must not exceed the constant:batched_calls_limit(available in constant metadata).
If origin is root then call are dispatch without checking origin filter. (This includes
bypassing frame_system::Config::BaseCallFilter).
# <weight> - Complexity: O(C) where C is the number of calls to be batched. # </weight>
This will return Ok in all circumstances. To determine the success of the batch, an
event is deposited. If a call failed and the batch was interrupted, then the
BatchInterrupted event is deposited, along with the number of successful calls made
and the error of the failed call. If all were successful, then the BatchCompleted
event is deposited.
Attributes
| Name | Type |
|---|---|
| calls | Vec<<T as Config>::Call> |
Python
call = substrate.compose_call(
'Utility', 'batch', {'calls': ['Call']}
)
as_derivative
Send a call through an indexed pseudonym of the sender.
Filter from origin are passed along. The call will be dispatched with an origin which use the same filter as the origin of this call.
NOTE: If you need to ensure that any account-based filtering is not honored (i.e.
because you expect proxy to have been used prior in the call stack and you do not want
the call restrictions to apply to any sub-accounts), then use as_multi_threshold_1
in the Multisig pallet instead.
NOTE: Prior to version *12, this was called as_limited_sub.
The dispatch origin for this call must be Signed.
Attributes
| Name | Type |
|---|---|
| index | u16 |
| call | Box<<T as Config>::Call> |
Python
call = substrate.compose_call(
'Utility', 'as_derivative', {'call': 'Call', 'index': 'u16'}
)
batch_all
Send a batch of dispatch calls and atomically execute them. The whole transaction will rollback and fail if any of the calls failed.
May be called from any origin.
calls: The calls to be dispatched from the same origin. The number of call must not exceed the constant:batched_calls_limit(available in constant metadata).
If origin is root then call are dispatch without checking origin filter. (This includes
bypassing frame_system::Config::BaseCallFilter).
# <weight> - Complexity: O(C) where C is the number of calls to be batched. # </weight>
Attributes
| Name | Type |
|---|---|
| calls | Vec<<T as Config>::Call> |
Python
call = substrate.compose_call(
'Utility', 'batch_all', {'calls': ['Call']}
)
dispatch_as
Dispatches a function call with a provided origin.
The dispatch origin for this call must be Root.
# <weight>
- O(1).
- Limited storage reads.
- One DB write (event).
- Weight of derivative call execution + T::WeightInfo::dispatch_as().
# </weight>
Attributes
| Name | Type |
|---|---|
| as_origin | Box<T::PalletsOrigin> |
| call | Box<<T as Config>::Call> |
Python
call = substrate.compose_call(
'Utility', 'dispatch_as', {
'as_origin': {
'system': {
'None': None,
'Root': None,
'Signed': 'AccountId',
},
None: None,
'Council': {
'Member': 'AccountId',
'Members': ('u32', 'u32'),
'_Phantom': None,
},
'CumulusXcm': {
'Relay': None,
'SiblingParachain': 'u32',
},
'Ethereum': {
'EthereumTransaction': '[u8; 20]',
},
'PolkadotXcm': {
'Response': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
},
'parents': 'u8',
},
'Xcm': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
},
'parents': 'u8',
},
},
'TechnicalCommittee': {
'Member': 'AccountId',
'Members': ('u32', 'u32'),
'_Phantom': None,
},
'Void': (),
},
'call': 'Call',
}
)
force_batch
Send a batch of dispatch calls.
Unlike batch, it allows errors and won't interrupt.
May be called from any origin.
calls: The calls to be dispatched from the same origin. The number of call must not exceed the constant:batched_calls_limit(available in constant metadata).
If origin is root then call are dispatch without checking origin filter. (This includes
bypassing frame_system::Config::BaseCallFilter).
# <weight> - Complexity: O(C) where C is the number of calls to be batched. # </weight>
Attributes
| Name | Type |
|---|---|
| calls | Vec<<T as Config>::Call> |
Python
call = substrate.compose_call(
'Utility', 'force_batch', {'calls': ['Call']}
)
Events
BatchInterrupted
Batch of dispatches did not complete fully. Index of first failing dispatch given, as well as the error.
Attributes
| Name | Type | Composition |
|---|---|---|
| index | u32 |
u32 |
| error | DispatchError |
{'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer')} |
BatchCompleted
Batch of dispatches completed fully with no error.
Attributes
No attributes
BatchCompletedWithErrors
Batch of dispatches completed but has errors.
Attributes
No attributes
ItemCompleted
A single item within a Batch of dispatches has completed with no error.
Attributes
No attributes
ItemFailed
A single item within a Batch of dispatches has completed with error.
Attributes
| Name | Type | Composition |
|---|---|---|
| error | DispatchError |
{'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer')} |
DispatchedAs
A call was dispatched.
Attributes
| Name | Type | Composition |
|---|---|---|
| result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer')}} |
Constants
batched_calls_limit
The limit on the number of batched calls.
Value
10922
Python
constant = substrate.get_constant('Utility', 'batched_calls_limit')
Errors
TooManyCalls
Too many calls batched.
Identity
Calls
add_registrar
Add a registrar to the system.
The dispatch origin for this call must be T::RegistrarOrigin.
account: the account of the registrar.
Emits RegistrarAdded if successful.
# <weight>
- O(R) where R registrar-count (governance-bounded and code-bounded).
- One storage mutation (codec O(R)).
- One event.
# </weight>
Attributes
| Name | Type |
|---|---|
| account | T::AccountId |
Python
call = substrate.compose_call(
'Identity', 'add_registrar', {'account': 'AccountId'}
)
set_identity
Set an account's identity information and reserve the appropriate deposit.
If the account already has identity information, the deposit is taken as part payment for the new deposit.
The dispatch origin for this call must be Signed.
info: The identity information.
Emits IdentitySet if successful.
# <weight>
- O(X + X&\#x27; + R)
- where X additional-field-count (deposit-bounded and code-bounded)
- where R judgements-count (registrar-count-bounded)
- One balance reserve operation.
- One storage mutation (codec-read O(X&\#x27; + R), codec-write O(X + R)).
- One event.
# </weight>
Attributes
| Name | Type |
|---|---|
| info | Box<IdentityInfo<T::MaxAdditionalFields>> |
Python
call = substrate.compose_call(
'Identity', 'set_identity', {
'info': {
'additional': [
(
{
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
{
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
),
],
'display': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'email': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'image': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'legal': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'pgp_fingerprint': (
None,
'[u8; 20]',
),
'riot': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'twitter': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'web': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
},
}
)
set_subs
Set the sub-accounts of the sender.
Payment: Any aggregate balance reserved by previous set_subs calls will be returned
and an amount SubAccountDeposit will be reserved for each item in subs.
The dispatch origin for this call must be Signed and the sender must have a registered identity.
subs: The identity's (new) sub-accounts.
# <weight>
- O(P + S)
- where P old-subs-count (hard- and deposit-bounded).
- where S subs-count (hard- and deposit-bounded).
- At most one balance operations.
- DB:
- P + S storage mutations (codec complexity O(1))
- One storage read (codec complexity O(P)).
- One storage write (codec complexity O(S)).
- One storage-exists (IdentityOf::contains_key).
# </weight>
Attributes
| Name | Type |
|---|---|
| subs | Vec<(T::AccountId, Data)> |
Python
call = substrate.compose_call(
'Identity', 'set_subs', {
'subs': [
(
'AccountId',
{
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
),
],
}
)
clear_identity
Clear an account's identity info and all sub-accounts and return all deposits.
Payment: All reserved balances on the account are returned.
The dispatch origin for this call must be Signed and the sender must have a registered identity.
Emits IdentityCleared if successful.
# <weight>
- O(R + S + X)
- where R registrar-count (governance-bounded).
- where S subs-count (hard- and deposit-bounded).
- where X additional-field-count (deposit-bounded and code-bounded).
- One balance-unreserve operation.
- 2 storage reads and S + 2 storage deletions.
- One event.
# </weight>
Attributes
No attributes
Python
call = substrate.compose_call(
'Identity', 'clear_identity', {}
)
request_judgement
Request a judgement from a registrar.
Payment: At most max_fee will be reserved for payment to the registrar if judgement
given.
The dispatch origin for this call must be Signed and the sender must have a registered identity.
reg_index: The index of the registrar whose judgement is requested.max_fee: The maximum fee that may be paid. This should just be auto-populated as:
Self::registrars().get(reg_index).unwrap().fee
Emits JudgementRequested if successful.
# <weight>
- O(R + X).
- One balance-reserve operation.
- Storage: 1 read O(R), 1 mutate O(X + R).
- One event.
# </weight>
Attributes
| Name | Type |
|---|---|
| reg_index | RegistrarIndex |
| max_fee | BalanceOf<T> |
Python
call = substrate.compose_call(
'Identity', 'request_judgement', {
'max_fee': 'u128',
'reg_index': 'u32',
}
)
cancel_request
Cancel a previous request.
Payment: A previously reserved deposit is returned on success.
The dispatch origin for this call must be Signed and the sender must have a registered identity.
reg_index: The index of the registrar whose judgement is no longer requested.
Emits JudgementUnrequested if successful.
# <weight>
- O(R + X).
- One balance-reserve operation.
- One storage mutation O(R + X).
- One event
# </weight>
Attributes
| Name | Type |
|---|---|
| reg_index | RegistrarIndex |
Python
call = substrate.compose_call(
'Identity', 'cancel_request', {'reg_index': 'u32'}
)
set_fee
Set the fee required for a judgement to be requested from a registrar.
The dispatch origin for this call must be Signed and the sender must be the account
of the registrar whose index is index.
index: the index of the registrar whose fee is to be set.fee: the new fee.
# <weight>
- O(R).
- One storage mutation O(R).
- Benchmark: 7.315 + R * 0.329 µs (min squares analysis)
# </weight>
Attributes
| Name | Type |
|---|---|
| index | RegistrarIndex |
| fee | BalanceOf<T> |
Python
call = substrate.compose_call(
'Identity', 'set_fee', {'fee': 'u128', 'index': 'u32'}
)
set_account_id
Change the account associated with a registrar.
The dispatch origin for this call must be Signed and the sender must be the account
of the registrar whose index is index.
index: the index of the registrar whose fee is to be set.new: the new account ID.
# <weight>
- O(R).
- One storage mutation O(R).
- Benchmark: 8.823 + R * 0.32 µs (min squares analysis)
# </weight>
Attributes
| Name | Type |
|---|---|
| index | RegistrarIndex |
| new | T::AccountId |
Python
call = substrate.compose_call(
'Identity', 'set_account_id', {'index': 'u32', 'new': 'AccountId'}
)
set_fields
Set the field information for a registrar.
The dispatch origin for this call must be Signed and the sender must be the account
of the registrar whose index is index.
index: the index of the registrar whose fee is to be set.fields: the fields that the registrar concerns themselves with.
# <weight>
- O(R).
- One storage mutation O(R).
- Benchmark: 7.464 + R * 0.325 µs (min squares analysis)
# </weight>
Attributes
| Name | Type |
|---|---|
| index | RegistrarIndex |
| fields | IdentityFields |
Python
call = substrate.compose_call(
'Identity', 'set_fields', {'fields': 'u64', 'index': 'u32'}
)
provide_judgement
Provide a judgement for an account's identity.
The dispatch origin for this call must be Signed and the sender must be the account
of the registrar whose index is reg_index.
reg_index: the index of the registrar whose judgement is being made.target: the account whose identity the judgement is upon. This must be an account with a registered identity.judgement: the judgement of the registrar of indexreg_indexabouttarget.
Emits JudgementGiven if successful.
# <weight>
- O(R + X).
- One balance-transfer operation.
- Up to one account-lookup operation.
- Storage: 1 read O(R), 1 mutate O(R + X).
- One event.
# </weight>
Attributes
| Name | Type |
|---|---|
| reg_index | RegistrarIndex |
| target | <T::Lookup as StaticLookup>::Source |
| judgement | Judgement<BalanceOf<T>> |
Python
call = substrate.compose_call(
'Identity', 'provide_judgement', {
'judgement': {
'Erroneous': None,
'FeePaid': 'u128',
'KnownGood': None,
'LowQuality': None,
'OutOfDate': None,
'Reasonable': None,
'Unknown': None,
},
'reg_index': 'u32',
'target': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
}
)
kill_identity
Remove an account's identity and sub-account information and slash the deposits.
Payment: Reserved balances from set_subs and set_identity are slashed and handled by
Slash. Verification request deposits are not returned; they should be cancelled
manually using cancel_request.
The dispatch origin for this call must match T::ForceOrigin.
target: the account whose identity the judgement is upon. This must be an account with a registered identity.
Emits IdentityKilled if successful.
# <weight>
- O(R + S + X).
- One balance-reserve operation.
- S + 2 storage mutations.
- One event.
# </weight>
Attributes
| Name | Type |
|---|---|
| target | <T::Lookup as StaticLookup>::Source |
Python
call = substrate.compose_call(
'Identity', 'kill_identity', {
'target': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
}
)
add_sub
Add the given account to the sender's subs.
Payment: Balance reserved by a previous set_subs call for one sub will be repatriated
to the sender.
The dispatch origin for this call must be Signed and the sender must have a registered
sub identity of sub.
Attributes
| Name | Type |
|---|---|
| sub | <T::Lookup as StaticLookup>::Source |
| data | Data |
Python
call = substrate.compose_call(
'Identity', 'add_sub', {
'data': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'sub': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
}
)
rename_sub
Alter the associated name of the given sub-account.
The dispatch origin for this call must be Signed and the sender must have a registered
sub identity of sub.
Attributes
| Name | Type |
|---|---|
| sub | <T::Lookup as StaticLookup>::Source |
| data | Data |
Python
call = substrate.compose_call(
'Identity', 'rename_sub', {
'data': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'sub': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
}
)
remove_sub
Remove the given account from the sender's subs.
Payment: Balance reserved by a previous set_subs call for one sub will be repatriated
to the sender.
The dispatch origin for this call must be Signed and the sender must have a registered
sub identity of sub.
Attributes
| Name | Type |
|---|---|
| sub | <T::Lookup as StaticLookup>::Source |
Python
call = substrate.compose_call(
'Identity', 'remove_sub', {
'sub': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
}
)
quit_sub
Remove the sender as a sub-account.
Payment: Balance reserved by a previous set_subs call for one sub will be repatriated
to the sender (not the original depositor).
The dispatch origin for this call must be Signed and the sender must have a registered super-identity.
NOTE: This should not normally be used, but is provided in the case that the non- controller of an account is maliciously registered as a sub-account.
Attributes
No attributes
Python
call = substrate.compose_call(
'Identity', 'quit_sub', {}
)
Events
IdentitySet
A name was set or reset (which will remove all judgements).
Attributes
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
IdentityCleared
A name was cleared, and the given balance returned.
Attributes
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| deposit | BalanceOf<T> |
u128 |
IdentityKilled
A name was removed and the given balance slashed.
Attributes
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| deposit | BalanceOf<T> |
u128 |
JudgementRequested
A judgement was asked from a registrar.
Attributes
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| registrar_index | RegistrarIndex |
u32 |
JudgementUnrequested
A judgement request was retracted.
Attributes
| Name | Type | Composition |
|---|---|---|
| who | T::AccountId |
AccountId |
| registrar_index | RegistrarIndex |
u32 |
JudgementGiven
A judgement was given by a registrar.
Attributes
| Name | Type | Composition |
|---|---|---|
| target | T::AccountId |
AccountId |
| registrar_index | RegistrarIndex |
u32 |
RegistrarAdded
A registrar was added.
Attributes
| Name | Type | Composition |
|---|---|---|
| registrar_index | RegistrarIndex |
u32 |
SubIdentityAdded
A sub-identity was added to an identity and the deposit paid.
Attributes
| Name | Type | Composition |
|---|---|---|
| sub | T::AccountId |
AccountId |
| main | T::AccountId |
AccountId |
| deposit | BalanceOf<T> |
u128 |
SubIdentityRemoved
A sub-identity was removed from an identity and the deposit freed.
Attributes
| Name | Type | Composition |
|---|---|---|
| sub | T::AccountId |
AccountId |
| main | T::AccountId |
AccountId |
| deposit | BalanceOf<T> |
u128 |
SubIdentityRevoked
A sub-identity was cleared, and the given deposit repatriated from the main identity account to the sub-identity account.
Attributes
| Name | Type | Composition |
|---|---|---|
| sub | T::AccountId |
AccountId |
| main | T::AccountId |
AccountId |
| deposit | BalanceOf<T> |
u128 |
Storage functions
IdentityOf
Information that is pertinent to identify the entity behind an account.
TWOX-NOTE: OK ― AccountId is a secure hash.
Python
result = substrate.query(
'Identity', 'IdentityOf', ['AccountId']
)
Return value
{
'deposit': 'u128',
'info': {
'additional': [('scale_info::288', 'scale_info::288')],
'display': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'email': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'image': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'legal': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'pgp_fingerprint': (None, '[u8; 20]'),
'riot': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'twitter': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
'web': {
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
},
'judgements': [
(
'u32',
{
'Erroneous': None,
'FeePaid': 'u128',
'KnownGood': None,
'LowQuality': None,
'OutOfDate': None,
'Reasonable': None,
'Unknown': None,
},
),
],
}
SuperOf
The super-identity of an alternative "sub" identity together with its name, within that
context. If the account is not some other account's sub-identity, then just None.
Python
result = substrate.query(
'Identity', 'SuperOf', ['AccountId']
)
Return value
(
'AccountId',
{
'BlakeTwo256': 'h256',
'Keccak256': 'h256',
'None': None,
'Raw': 'Bytes',
'Sha256': 'h256',
'ShaThree256': 'h256',
},
)
SubsOf
Alternative "sub" identities of this account.
The first item is the deposit, the second is a vector of the accounts.
TWOX-NOTE: OK ― AccountId is a secure hash.
Python
result = substrate.query(
'Identity', 'SubsOf', ['AccountId']
)
Return value
('u128', ['AccountId'])
Registrars
The set of registrars. Not expected to get very big as can only be added through a special origin (likely a council motion).
The index into this can be cast to RegistrarIndex to get a valid value.
Python
result = substrate.query(
'Identity', 'Registrars', []
)
Return value
[(None, {'account': 'AccountId', 'fee': 'u128', 'fields': 'u64'})]
Constants
BasicDeposit
The amount held on deposit for a registered identity
Value
10000000000000000000
Python
constant = substrate.get_constant('Identity', 'BasicDeposit')
FieldDeposit
The amount held on deposit per additional field for a registered identity.
Value
2500000000000000000
Python
constant = substrate.get_constant('Identity', 'FieldDeposit')
SubAccountDeposit
The amount held on deposit for a registered subaccount. This should account for the fact that one storage item's value will increase by the size of an account ID, and there will be another trie item whose value is the size of an account ID plus 32 bytes.
Value
2000000000000000000
Python
constant = substrate.get_constant('Identity', 'SubAccountDeposit')
MaxSubAccounts
The maximum number of sub-accounts allowed per identified account.
Value
100
Python
constant = substrate.get_constant('Identity', 'MaxSubAccounts')
MaxAdditionalFields
Maximum number of additional fields that may be stored in an ID. Needed to bound the I/O required to access an identity, but can be pretty high.
Value
100
Python
constant = substrate.get_constant('Identity', 'MaxAdditionalFields')
MaxRegistrars
Maxmimum number of registrars allowed in the system. Needed to bound the complexity of, e.g., updating judgements.
Value
20
Python
constant = substrate.get_constant('Identity', 'MaxRegistrars')
Errors
TooManySubAccounts
Too many subs-accounts.
NotFound
Account isn't found.
NotNamed
Account isn't named.
EmptyIndex
Empty index.
FeeChanged
Fee is changed.
NoIdentity
No identity found.
StickyJudgement
Sticky judgement.
JudgementGiven
Judgement given.
InvalidJudgement
Invalid judgement.
InvalidIndex
The index is invalid.
InvalidTarget
The target is invalid.
TooManyFields
Too many additional fields.
TooManyRegistrars
Maximum amount of registrars reached. Cannot add any more.
AlreadyClaimed
Account ID is already named.
NotSub
Sender is not a sub-account.
NotOwned
Sub-account isn't owned by sender.
Vesting
Calls
vest
Unlock any vested funds of the sender account.
The dispatch origin for this call must be Signed and the sender must have funds still locked under this pallet.
Emits either VestingCompleted or VestingUpdated.
# <weight>
- O(1).
- DbWeight: 2 Reads, 2 Writes
- Reads: Vesting Storage, Balances Locks, [Sender Account]
- Writes: Vesting Storage, Balances Locks, [Sender Account]
# </weight>
Attributes
No attributes
Python
call = substrate.compose_call(
'Vesting', 'vest', {}
)
vest_other
Unlock any vested funds of a target account.
The dispatch origin for this call must be Signed.
target: The account whose vested funds should be unlocked. Must have funds still locked under this pallet.
Emits either VestingCompleted or VestingUpdated.
# <weight>
- O(1).
- DbWeight: 3 Reads, 3 Writes
- Reads: Vesting Storage, Balances Locks, Target Account
- Writes: Vesting Storage, Balances Locks, Target Account
# </weight>
Attributes
| Name | Type |
|---|---|
| target | <T::Lookup as StaticLookup>::Source |
Python
call = substrate.compose_call(
'Vesting', 'vest_other', {
'target': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
}
)
vested_transfer
Create a vested transfer.
The dispatch origin for this call must be Signed.
target: The account receiving the vested funds.schedule: The vesting schedule attached to the transfer.
Emits VestingCreated.
NOTE: This will unlock all schedules through the current block.
# <weight>
- O(1).
- DbWeight: 3 Reads, 3 Writes
- Reads: Vesting Storage, Balances Locks, Target Account, [Sender Account]
- Writes: Vesting Storage, Balances Locks, Target Account, [Sender Account]
# </weight>
Attributes
| Name | Type |
|---|---|
| target | <T::Lookup as StaticLookup>::Source |
| schedule | VestingInfo<BalanceOf<T>, T::BlockNumber> |
Python
call = substrate.compose_call(
'Vesting', 'vested_transfer', {
'schedule': {
'locked': 'u128',
'per_block': 'u128',
'starting_block': 'u32',
},
'target': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
}
)
force_vested_transfer
Force a vested transfer.
The dispatch origin for this call must be Root.
source: The account whose funds should be transferred.target: The account that should be transferred the vested funds.schedule: The vesting schedule attached to the transfer.
Emits VestingCreated.
NOTE: This will unlock all schedules through the current block.
# <weight>
- O(1).
- DbWeight: 4 Reads, 4 Writes
- Reads: Vesting Storage, Balances Locks, Target Account, Source Account
- Writes: Vesting Storage, Balances Locks, Target Account, Source Account
# </weight>
Attributes
| Name | Type |
|---|---|
| source | <T::Lookup as StaticLookup>::Source |
| target | <T::Lookup as StaticLookup>::Source |
| schedule | VestingInfo<BalanceOf<T>, T::BlockNumber> |
Python
call = substrate.compose_call(
'Vesting', 'force_vested_transfer', {
'schedule': {
'locked': 'u128',
'per_block': 'u128',
'starting_block': 'u32',
},
'source': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
'target': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
}
)
merge_schedules
Merge two vesting schedules together, creating a new vesting schedule that unlocks over the highest possible start and end blocks. If both schedules have already started the current block will be used as the schedule start; with the caveat that if one schedule is finished by the current block, the other will be treated as the new merged schedule, unmodified.
NOTE: If schedule1_index == schedule2_index this is a no-op.
NOTE: This will unlock all schedules through the current block prior to merging.
NOTE: If both schedules have ended by the current block, no new schedule will be created
and both will be removed.
Merged schedule attributes:
- starting_block: MAX(schedule1.starting_block, scheduled2.starting_block,
current_block).
- ending_block: MAX(schedule1.ending_block, schedule2.ending_block).
- locked: schedule1.locked_at(current_block) + schedule2.locked_at(current_block).
The dispatch origin for this call must be Signed.
schedule1_index: index of the first schedule to merge.schedule2_index: index of the second schedule to merge.
Attributes
| Name | Type |
|---|---|
| schedule1_index | u32 |
| schedule2_index | u32 |
Python
call = substrate.compose_call(
'Vesting', 'merge_schedules', {
'schedule1_index': 'u32',
'schedule2_index': 'u32',
}
)
Events
VestingUpdated
The amount vested has been updated. This could indicate a change in funds available. The balance given is the amount which is left unvested (and thus locked).
Attributes
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
| unvested | BalanceOf<T> |
u128 |
VestingCompleted
An [account] has become fully vested.
Attributes
| Name | Type | Composition |
|---|---|---|
| account | T::AccountId |
AccountId |
Storage functions
Vesting
Information regarding the vesting of a given account.
Python
result = substrate.query(
'Vesting', 'Vesting', ['AccountId']
)
Return value
[{'locked': 'u128', 'per_block': 'u128', 'starting_block': 'u32'}]
StorageVersion
Storage version of the pallet.
New networks start with latest version, as determined by the genesis build.
Python
result = substrate.query(
'Vesting', 'StorageVersion', []
)
Return value
('V0', 'V1')
Constants
MinVestedTransfer
The minimum amount transferred to call vested_transfer.
Value
100000000000000000000
Python
constant = substrate.get_constant('Vesting', 'MinVestedTransfer')
MaxVestingSchedules
Value
28
Python
constant = substrate.get_constant('Vesting', 'MaxVestingSchedules')
Errors
NotVesting
The account given is not vesting.
AtMaxVestingSchedules
The account already has MaxVestingSchedules count of schedules and thus
cannot add another one. Consider merging existing schedules in order to add another.
AmountLow
Amount being transferred is too low to create a vesting schedule.
ScheduleIndexOutOfBounds
An index was out of bounds of the vesting schedules.
InvalidScheduleParams
Failed to create a new schedule because some parameter was invalid.
Multisig
Calls
as_multi_threshold_1
Immediately dispatch a multi-signature call using a single approval from the caller.
The dispatch origin for this call must be Signed.
other_signatories: The accounts (other than the sender) who are part of the multi-signature, but do not participate in the approval process.call: The call to be executed.
Result is equivalent to the dispatched result.
# <weight> O(Z + C) where Z is the length of the call and C its execution weight.
- DB Weight: None
- Plus Call Weight # </weight>
Attributes
| Name | Type |
|---|---|
| other_signatories | Vec<T::AccountId> |
| call | Box<<T as Config>::Call> |
Python
call = substrate.compose_call(
'Multisig', 'as_multi_threshold_1', {
'call': 'Call',
'other_signatories': ['AccountId'],
}
)
as_multi
Register approval for a dispatch to be made from a deterministic composite account if
approved by a total of threshold - 1 of other_signatories.
If there are enough, then dispatch the call.
Payment: DepositBase will be reserved if this is the first approval, plus
threshold times DepositFactor. It is returned once this dispatch happens or
is cancelled.
The dispatch origin for this call must be Signed.
threshold: The total number of approvals for this dispatch before it is executed.other_signatories: The accounts (other than the sender) who can approve this dispatch. May not be empty.maybe_timepoint: If this is the first approval, then this must beNone. If it is not the first approval, then it must beSome, with the timepoint (block number and transaction index) of the first approval transaction.call: The call to be executed.
NOTE: Unless this is the final approval, you will generally want to use
approve_as_multi instead, since it only requires a hash of the call.
Result is equivalent to the dispatched result if threshold is exactly 1. Otherwise
on success, result is Ok and the result from the interior call, if it was executed,
may be found in the deposited MultisigExecuted event.
# <weight>
- O(S + Z + Call).
- Up to one balance-reserve or unreserve operation.
- One passthrough operation, one insert, both O(S) where S is the number of
signatories. S is capped by MaxSignatories, with weight being proportional.
- One call encode & hash, both of complexity O(Z) where Z is tx-len.
- One encode & hash, both of complexity O(S).
- Up to one binary search and insert (O(logS + S)).
- I/O: 1 read O(S), up to 1 mutate O(S). Up to one remove.
- One event.
- The weight of the call.
- Storage: inserts one item, value size bounded by MaxSignatories, with a deposit
taken for its lifetime of DepositBase + threshold * DepositFactor.
- DB Weight:
- Reads: Multisig Storage, [Caller Account], Calls (if
store_call) - Writes: Multisig Storage, [Caller Account], Calls (if
store_call)
- Reads: Multisig Storage, [Caller Account], Calls (if
- Plus Call Weight # </weight>
Attributes
| Name | Type |
|---|---|
| threshold | u16 |
| other_signatories | Vec<T::AccountId> |
| maybe_timepoint | Option<Timepoint<T::BlockNumber>> |
| call | OpaqueCall<T> |
| store_call | bool |
| max_weight | Weight |
Python
call = substrate.compose_call(
'Multisig', 'as_multi', {
'call': 'Call',
'max_weight': 'u64',
'maybe_timepoint': (
None,
{
'height': 'u32',
'index': 'u32',
},
),
'other_signatories': ['AccountId'],
'store_call': 'bool',
'threshold': 'u16',
}
)
approve_as_multi
Register approval for a dispatch to be made from a deterministic composite account if
approved by a total of threshold - 1 of other_signatories.
Payment: DepositBase will be reserved if this is the first approval, plus
threshold times DepositFactor. It is returned once this dispatch happens or
is cancelled.
The dispatch origin for this call must be Signed.
threshold: The total number of approvals for this dispatch before it is executed.other_signatories: The accounts (other than the sender) who can approve this dispatch. May not be empty.maybe_timepoint: If this is the first approval, then this must beNone. If it is not the first approval, then it must beSome, with the timepoint (block number and transaction index) of the first approval transaction.call_hash: The hash of the call to be executed.
NOTE: If this is the final approval, you will want to use as_multi instead.
# <weight>
- O(S).
- Up to one balance-reserve or unreserve operation.
- One passthrough operation, one insert, both O(S) where S is the number of
signatories. S is capped by MaxSignatories, with weight being proportional.
- One encode & hash, both of complexity O(S).
- Up to one binary search and insert (O(logS + S)).
- I/O: 1 read O(S), up to 1 mutate O(S). Up to one remove.
- One event.
- Storage: inserts one item, value size bounded by MaxSignatories, with a deposit
taken for its lifetime of DepositBase + threshold * DepositFactor.
- DB Weight:
- Read: Multisig Storage, [Caller Account]
- Write: Multisig Storage, [Caller Account] # </weight>
Attributes
| Name | Type |
|---|---|
| threshold | u16 |
| other_signatories | Vec<T::AccountId> |
| maybe_timepoint | Option<Timepoint<T::BlockNumber>> |
| call_hash | [u8; 32] |
| max_weight | Weight |
Python
call = substrate.compose_call(
'Multisig', 'approve_as_multi', {
'call_hash': '[u8; 32]',
'max_weight': 'u64',
'maybe_timepoint': (
None,
{
'height': 'u32',
'index': 'u32',
},
),
'other_signatories': ['AccountId'],
'threshold': 'u16',
}
)
cancel_as_multi
Cancel a pre-existing, on-going multisig transaction. Any deposit reserved previously for this operation will be unreserved on success.
The dispatch origin for this call must be Signed.
threshold: The total number of approvals for this dispatch before it is executed.other_signatories: The accounts (other than the sender) who can approve this dispatch. May not be empty.timepoint: The timepoint (block number and transaction index) of the first approval transaction for this dispatch.call_hash: The hash of the call to be executed.
# <weight>
- O(S).
- Up to one balance-reserve or unreserve operation.
- One passthrough operation, one insert, both O(S) where S is the number of
signatories. S is capped by MaxSignatories, with weight being proportional.
- One encode & hash, both of complexity O(S).
- One event.
- I/O: 1 read O(S), one remove.
- Storage: removes one item.
- DB Weight:
- Read: Multisig Storage, [Caller Account], Refund Account, Calls
- Write: Multisig Storage, [Caller Account], Refund Account, Calls # </weight>
Attributes
| Name | Type |
|---|---|
| threshold | u16 |
| other_signatories | Vec<T::AccountId> |
| timepoint | Timepoint<T::BlockNumber> |
| call_hash | [u8; 32] |
Python
call = substrate.compose_call(
'Multisig', 'cancel_as_multi', {
'call_hash': '[u8; 32]',
'other_signatories': ['AccountId'],
'threshold': 'u16',
'timepoint': {
'height': 'u32',
'index': 'u32',
},
}
)
Events
NewMultisig
A new multisig operation has begun.
Attributes
| Name | Type | Composition |
|---|---|---|
| approving | T::AccountId |
AccountId |
| multisig | T::AccountId |
AccountId |
| call_hash | CallHash |
[u8; 32] |
MultisigApproval
A multisig operation has been approved by someone.
Attributes
| Name | Type | Composition |
|---|---|---|
| approving | T::AccountId |
AccountId |
| timepoint | Timepoint<T::BlockNumber> |
{'height': 'u32', 'index': 'u32'} |
| multisig | T::AccountId |
AccountId |
| call_hash | CallHash |
[u8; 32] |
MultisigExecuted
A multisig operation has been executed.
Attributes
| Name | Type | Composition |
|---|---|---|
| approving | T::AccountId |
AccountId |
| timepoint | Timepoint<T::BlockNumber> |
{'height': 'u32', 'index': 'u32'} |
| multisig | T::AccountId |
AccountId |
| call_hash | CallHash |
[u8; 32] |
| result | DispatchResult |
{'Ok': (), 'Err': {'Other': None, 'CannotLookup': None, 'BadOrigin': None, 'Module': {'index': 'u8', 'error': '[u8; 4]'}, 'ConsumerRemaining': None, 'NoProviders': None, 'TooManyConsumers': None, 'Token': ('NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported'), 'Arithmetic': ('Underflow', 'Overflow', 'DivisionByZero'), 'Transactional': ('LimitReached', 'NoLayer')}} |
MultisigCancelled
A multisig operation has been cancelled.
Attributes
| Name | Type | Composition |
|---|---|---|
| cancelling | T::AccountId |
AccountId |
| timepoint | Timepoint<T::BlockNumber> |
{'height': 'u32', 'index': 'u32'} |
| multisig | T::AccountId |
AccountId |
| call_hash | CallHash |
[u8; 32] |
Storage functions
Multisigs
The set of open multisig operations.
Python
result = substrate.query(
'Multisig', 'Multisigs', ['AccountId', '[u8; 32]']
)
Return value
{
'approvals': ['AccountId'],
'deposit': 'u128',
'depositor': 'AccountId',
'when': {'height': 'u32', 'index': 'u32'},
}
Calls
Python
result = substrate.query(
'Multisig', 'Calls', ['[u8; 32]']
)
Return value
('Call', 'AccountId', 'u128')
Constants
DepositBase
The base amount of currency needed to reserve for creating a multisig execution or to store a dispatch call for later.
This is held for an additional storage item whose value size is
4 + sizeof((BlockNumber, Balance, AccountId)) bytes and whose key size is
32 + sizeof(AccountId) bytes.
Value
5430000000000000000
Python
constant = substrate.get_constant('Multisig', 'DepositBase')
DepositFactor
The amount of currency needed per unit threshold when creating a multisig execution.
This is held for adding 32 bytes more into a pre-existing storage value.
Value
1920000000000000000
Python
constant = substrate.get_constant('Multisig', 'DepositFactor')
MaxSignatories
The maximum amount of signatories allowed in the multisig.
Value
100
Python
constant = substrate.get_constant('Multisig', 'MaxSignatories')
Errors
MinimumThreshold
Threshold must be 2 or greater.
AlreadyApproved
Call is already approved by this signatory.
NoApprovalsNeeded
Call doesn't need any (more) approvals.
TooFewSignatories
There are too few signatories in the list.
TooManySignatories
There are too many signatories in the list.
SignatoriesOutOfOrder
The signatories were provided out of order; they should be ordered.
SenderInSignatories
The sender was contained in the other signatories; it shouldn't be.
NotFound
Multisig operation not found when attempting to cancel.
NotOwner
Only the account that originally created the multisig is able to cancel it.
NoTimepoint
No timepoint was given, yet the multisig operation is already underway.
WrongTimepoint
A different timepoint was given to the multisig operation that is underway.
UnexpectedTimepoint
A timepoint was given, yet no multisig operation is underway.
MaxWeightTooLow
The maximum weight information provided was too low.
AlreadyStored
The data to be stored is already stored.
Bounties
Calls
propose_bounty
Propose a new bounty.
The dispatch origin for this call must be Signed.
Payment: TipReportDepositBase will be reserved from the origin account, as well as
DataDepositPerByte for each byte in reason. It will be unreserved upon approval,
or slashed when rejected.
curator: The curator account whom will manage this bounty.fee: The curator fee.value: The total payment amount of this bounty, curator fee included.description: The description of this bounty.
Attributes
| Name | Type |
|---|---|
| value | BalanceOf<T, I> |
| description | Vec<u8> |
Python
call = substrate.compose_call(
'Bounties', 'propose_bounty', {
'description': 'Bytes',
'value': 'u128',
}
)
approve_bounty
Approve a bounty proposal. At a later time, the bounty will be funded and become active and the original deposit will be returned.
May only be called from T::ApproveOrigin.
# <weight> - O(1). # </weight>
Attributes
| Name | Type |
|---|---|
| bounty_id | BountyIndex |
Python
call = substrate.compose_call(
'Bounties', 'approve_bounty', {'bounty_id': 'u32'}
)
propose_curator
Assign a curator to a funded bounty.
May only be called from T::ApproveOrigin.
# <weight> - O(1). # </weight>
Attributes
| Name | Type |
|---|---|
| bounty_id | BountyIndex |
| curator | <T::Lookup as StaticLookup>::Source |
| fee | BalanceOf<T, I> |
Python
call = substrate.compose_call(
'Bounties', 'propose_curator', {
'bounty_id': 'u32',
'curator': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
'fee': 'u128',
}
)
unassign_curator
Unassign curator from a bounty.
This function can only be called by the RejectOrigin a signed origin.
If this function is called by the RejectOrigin, we assume that the curator is
malicious or inactive. As a result, we will slash the curator when possible.
If the origin is the curator, we take this as a sign they are unable to do their job and they willingly give up. We could slash them, but for now we allow them to recover their deposit and exit without issue. (We may want to change this if it is abused.)
Finally, the origin can be anyone if and only if the curator is "inactive". This allows anyone in the community to call out that a curator is not doing their due diligence, and we should pick a new curator. In this case the curator should also be slashed.
# <weight> - O(1). # </weight>
Attributes
| Name | Type |
|---|---|
| bounty_id | BountyIndex |
Python
call = substrate.compose_call(
'Bounties', 'unassign_curator', {'bounty_id': 'u32'}
)
accept_curator
Accept the curator role for a bounty. A deposit will be reserved from curator and refund upon successful payout.
May only be called from the curator.
# <weight> - O(1). # </weight>
Attributes
| Name | Type |
|---|---|
| bounty_id | BountyIndex |
Python
call = substrate.compose_call(
'Bounties', 'accept_curator', {'bounty_id': 'u32'}
)
award_bounty
Award bounty to a beneficiary account. The beneficiary will be able to claim the funds after a delay.
The dispatch origin for this call must be the curator of this bounty.
bounty_id: Bounty ID to award.beneficiary: The beneficiary account whom will receive the payout.
# <weight> - O(1). # </weight>
Attributes
| Name | Type |
|---|---|
| bounty_id | BountyIndex |
| beneficiary | <T::Lookup as StaticLookup>::Source |
Python
call = substrate.compose_call(
'Bounties', 'award_bounty', {
'beneficiary': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
'bounty_id': 'u32',
}
)
claim_bounty
Claim the payout from an awarded bounty after payout delay.
The dispatch origin for this call must be the beneficiary of this bounty.
bounty_id: Bounty ID to claim.
# <weight> - O(1). # </weight>
Attributes
| Name | Type |
|---|---|
| bounty_id | BountyIndex |
Python
call = substrate.compose_call(
'Bounties', 'claim_bounty', {'bounty_id': 'u32'}
)
close_bounty
Cancel a proposed or active bounty. All the funds will be sent to treasury and the curator deposit will be unreserved if possible.
Only T::RejectOrigin is able to cancel a bounty.
bounty_id: Bounty ID to cancel.
# <weight> - O(1). # </weight>
Attributes
| Name | Type |
|---|---|
| bounty_id | BountyIndex |
Python
call = substrate.compose_call(
'Bounties', 'close_bounty', {'bounty_id': 'u32'}
)
extend_bounty_expiry
Extend the expiry time of an active bounty.
The dispatch origin for this call must be the curator of this bounty.
bounty_id: Bounty ID to extend.remark: additional information.
# <weight> - O(1). # </weight>
Attributes
| Name | Type |
|---|---|
| bounty_id | BountyIndex |
| remark | Vec<u8> |
Python
call = substrate.compose_call(
'Bounties', 'extend_bounty_expiry', {
'bounty_id': 'u32',
'remark': 'Bytes',
}
)
Events
BountyProposed
New bounty proposal.
Attributes
| Name | Type | Composition |
|---|---|---|
| index | BountyIndex |
u32 |
BountyRejected
A bounty proposal was rejected; funds were slashed.
Attributes
| Name | Type | Composition |
|---|---|---|
| index | BountyIndex |
u32 |
| bond | BalanceOf<T, I> |
u128 |
BountyBecameActive
A bounty proposal is funded and became active.
Attributes
| Name | Type | Composition |
|---|---|---|
| index | BountyIndex |
u32 |
BountyAwarded
A bounty is awarded to a beneficiary.
Attributes
| Name | Type | Composition |
|---|---|---|
| index | BountyIndex |
u32 |
| beneficiary | T::AccountId |
AccountId |
BountyClaimed
A bounty is claimed by beneficiary.
Attributes
| Name | Type | Composition |
|---|---|---|
| index | BountyIndex |
u32 |
| payout | BalanceOf<T, I> |
u128 |
| beneficiary | T::AccountId |
AccountId |
BountyCanceled
A bounty is cancelled.
Attributes
| Name | Type | Composition |
|---|---|---|
| index | BountyIndex |
u32 |
BountyExtended
A bounty expiry is extended.
Attributes
| Name | Type | Composition |
|---|---|---|
| index | BountyIndex |
u32 |
Storage functions
BountyCount
Number of bounty proposals that have been made.
Python
result = substrate.query(
'Bounties', 'BountyCount', []
)
Return value
'u32'
Bounties
Bounties that have been made.
Python
result = substrate.query(
'Bounties', 'Bounties', ['u32']
)
Return value
{
'bond': 'u128',
'curator_deposit': 'u128',
'fee': 'u128',
'proposer': 'AccountId',
'status': {
'Active': {'curator': 'AccountId', 'update_due': 'u32'},
'Approved': None,
'CuratorProposed': {'curator': 'AccountId'},
'Funded': None,
'PendingPayout': {
'beneficiary': 'AccountId',
'curator': 'AccountId',
'unlock_at': 'u32',
},
'Proposed': None,
},
'value': 'u128',
}
BountyDescriptions
The description of each bounty.
Python
result = substrate.query(
'Bounties', 'BountyDescriptions', ['u32']
)
Return value
'Bytes'
BountyApprovals
Bounty indices that have been approved but not yet funded.
Python
result = substrate.query(
'Bounties', 'BountyApprovals', []
)
Return value
['u32']
Constants
BountyDepositBase
The amount held on deposit for placing a bounty proposal.
Value
1000000000000000000
Python
constant = substrate.get_constant('Bounties', 'BountyDepositBase')
BountyDepositPayoutDelay
The delay period for which a bounty beneficiary need to wait before claim the payout.
Value
14400
Python
constant = substrate.get_constant('Bounties', 'BountyDepositPayoutDelay')
BountyUpdatePeriod
Bounty duration in blocks.
Value
100800
Python
constant = substrate.get_constant('Bounties', 'BountyUpdatePeriod')
CuratorDepositMultiplier
The curator deposit is calculated as a percentage of the curator fee.
This deposit has optional upper and lower bounds with CuratorDepositMax and
CuratorDepositMin.
Value
500000
Python
constant = substrate.get_constant('Bounties', 'CuratorDepositMultiplier')
CuratorDepositMax
Maximum amount of funds that should be placed in a deposit for making a proposal.
Value
10000000000000000000000
Python
constant = substrate.get_constant('Bounties', 'CuratorDepositMax')
CuratorDepositMin
Minimum amount of funds that should be placed in a deposit for making a proposal.
Value
100000000000000000000
Python
constant = substrate.get_constant('Bounties', 'CuratorDepositMin')
BountyValueMinimum
Minimum value for a bounty.
Value
5000000000000000000
Python
constant = substrate.get_constant('Bounties', 'BountyValueMinimum')
DataDepositPerByte
The amount held on deposit per byte within the tip report reason or bounty description.
Value
100000000000000
Python
constant = substrate.get_constant('Bounties', 'DataDepositPerByte')
MaximumReasonLength
Maximum acceptable reason length.
Benchmarks depend on this value, be sure to update weights file when changing this value
Value
16384
Python
constant = substrate.get_constant('Bounties', 'MaximumReasonLength')
Errors
InsufficientProposersBalance
Proposer's balance is too low.
InvalidIndex
No proposal or bounty at that index.
ReasonTooBig
The reason given is just too big.
UnexpectedStatus
The bounty status is unexpected.
RequireCurator
Require bounty curator.
InvalidValue
Invalid bounty value.
InvalidFee
Invalid bounty fee.
PendingPayout
A bounty payout is pending. To cancel the bounty, you must unassign and slash the curator.
Premature
The bounties cannot be claimed/closed because it's still in the countdown period.
HasActiveChildBounty
The bounty cannot be closed because it has active child bounties.
TooManyQueued
Too many approvals are already queued.
Tips
Calls
report_awesome
Report something reason that deserves a tip and claim any eventual the finder's fee.
The dispatch origin for this call must be Signed.
Payment: TipReportDepositBase will be reserved from the origin account, as well as
DataDepositPerByte for each byte in reason.
reason: The reason for, or the thing that deserves, the tip; generally this will be a UTF-8-encoded URL.who: The account which should be credited for the tip.
Emits NewTip if successful.
# <weight>
- Complexity: O(R) where R length of reason.
- encoding and hashing of 'reason'
- DbReads: Reasons, Tips
- DbWrites: Reasons, Tips
# </weight>
Attributes
| Name | Type |
|---|---|
| reason | Vec<u8> |
| who | T::AccountId |
Python
call = substrate.compose_call(
'Tips', 'report_awesome', {
'reason': 'Bytes',
'who': 'AccountId',
}
)
retract_tip
Retract a prior tip-report from report_awesome, and cancel the process of tipping.
If successful, the original deposit will be unreserved.
The dispatch origin for this call must be Signed and the tip identified by hash
must have been reported by the signing account through report_awesome (and not
through tip_new).
hash: The identity of the open tip for which a tip value is declared. This is formed as the hash of the tuple of the original tipreasonand the beneficiary account ID.
Emits TipRetracted if successful.
# <weight>
- Complexity: O(1)
- Depends on the length of T::Hash which is fixed.
- DbReads: Tips, origin account
- DbWrites: Reasons, Tips, origin account
# </weight>
Attributes
| Name | Type |
|---|---|
| hash | T::Hash |
Python
call = substrate.compose_call(
'Tips', 'retract_tip', {'hash': '[u8; 32]'}
)
tip_new
Give a tip for something new; no finder's fee will be taken.
The dispatch origin for this call must be Signed and the signing account must be a
member of the Tippers set.
reason: The reason for, or the thing that deserves, the tip; generally this will be a UTF-8-encoded URL.who: The account which should be credited for the tip.tip_value: The amount of tip that the sender would like to give. The median tip value of active tippers will be given to thewho.
Emits NewTip if successful.
# <weight>
- Complexity: O(R + T) where R length of reason, T is the number of tippers.
- O(T): decoding Tipper vec of length T. T is charged as upper bound given by
ContainsLengthBound. The actual cost depends on the implementation of
T::Tippers.
- O(R): hashing and encoding of reason of length R
- DbReads: Tippers, Reasons
- DbWrites: Reasons, Tips
# </weight>
Attributes
| Name | Type |
|---|---|
| reason | Vec<u8> |
| who | T::AccountId |
| tip_value | BalanceOf<T, I> |
Python
call = substrate.compose_call(
'Tips', 'tip_new', {
'reason': 'Bytes',
'tip_value': 'u128',
'who': 'AccountId',
}
)
tip
Declare a tip value for an already-open tip.
The dispatch origin for this call must be Signed and the signing account must be a
member of the Tippers set.
hash: The identity of the open tip for which a tip value is declared. This is formed as the hash of the tuple of the hash of the original tipreasonand the beneficiary account ID.tip_value: The amount of tip that the sender would like to give. The median tip value of active tippers will be given to thewho.
Emits TipClosing if the threshold of tippers has been reached and the countdown period
has started.
# <weight>
- Complexity: O(T) where T is the number of tippers. decoding Tipper vec of length
T, insert tip and check closing, T is charged as upper bound given by
ContainsLengthBound. The actual cost depends on the implementation of T::Tippers.
Actually weight could be lower as it depends on how many tips are in OpenTip but it
is weighted as if almost full i.e of length T-1.
- DbReads: Tippers, Tips
- DbWrites: Tips
# </weight>
Attributes
| Name | Type |
|---|---|
| hash | T::Hash |
| tip_value | BalanceOf<T, I> |
Python
call = substrate.compose_call(
'Tips', 'tip', {
'hash': '[u8; 32]',
'tip_value': 'u128',
}
)
close_tip
Close and payout a tip.
The dispatch origin for this call must be Signed.
The tip identified by hash must have finished its countdown period.
hash: The identity of the open tip for which a tip value is declared. This is formed as the hash of the tuple of the original tipreasonand the beneficiary account ID.
# <weight>
- Complexity: O(T) where T is the number of tippers. decoding Tipper vec of length
T. T is charged as upper bound given by ContainsLengthBound. The actual cost
depends on the implementation of T::Tippers.
- DbReads: Tips, Tippers, tip finder
- DbWrites: Reasons, Tips, Tippers, tip finder
# </weight>
Attributes
| Name | Type |
|---|---|
| hash | T::Hash |
Python
call = substrate.compose_call(
'Tips', 'close_tip', {'hash': '[u8; 32]'}
)
slash_tip
Remove and slash an already-open tip.
May only be called from T::RejectOrigin.
As a result, the finder is slashed and the deposits are lost.
Emits TipSlashed if successful.
# <weight>
T is charged as upper bound given by ContainsLengthBound.
The actual cost depends on the implementation of T::Tippers.
# </weight>
Attributes
| Name | Type |
|---|---|
| hash | T::Hash |
Python
call = substrate.compose_call(
'Tips', 'slash_tip', {'hash': '[u8; 32]'}
)
Events
NewTip
A new tip suggestion has been opened.
Attributes
| Name | Type | Composition |
|---|---|---|
| tip_hash | T::Hash |
[u8; 32] |
TipClosing
A tip suggestion has reached threshold and is closing.
Attributes
| Name | Type | Composition |
|---|---|---|
| tip_hash | T::Hash |
[u8; 32] |
TipClosed
A tip suggestion has been closed.
Attributes
| Name | Type | Composition |
|---|---|---|
| tip_hash | T::Hash |
[u8; 32] |
| who | T::AccountId |
AccountId |
| payout | BalanceOf<T, I> |
u128 |
TipRetracted
A tip suggestion has been retracted.
Attributes
| Name | Type | Composition |
|---|---|---|
| tip_hash | T::Hash |
[u8; 32] |
TipSlashed
A tip suggestion has been slashed.
Attributes
| Name | Type | Composition |
|---|---|---|
| tip_hash | T::Hash |
[u8; 32] |
| finder | T::AccountId |
AccountId |
| deposit | BalanceOf<T, I> |
u128 |
Storage functions
Tips
TipsMap that are not yet completed. Keyed by the hash of (reason, who) from the value.
This has the insecure enumerable hash function since the key itself is already
guaranteed to be a secure hash.
Python
result = substrate.query(
'Tips', 'Tips', ['[u8; 32]']
)
Return value
{
'closes': (None, 'u32'),
'deposit': 'u128',
'finder': 'AccountId',
'finders_fee': 'bool',
'reason': '[u8; 32]',
'tips': [('AccountId', 'u128')],
'who': 'AccountId',
}
Reasons
Simple preimage lookup from the reason's hash to the original data. Again, has an insecure enumerable hash since the key is guaranteed to be the result of a secure hash.
Python
result = substrate.query(
'Tips', 'Reasons', ['[u8; 32]']
)
Return value
'Bytes'
Constants
MaximumReasonLength
Maximum acceptable reason length.
Benchmarks depend on this value, be sure to update weights file when changing this value
Value
16384
Python
constant = substrate.get_constant('Tips', 'MaximumReasonLength')
DataDepositPerByte
The amount held on deposit per byte within the tip report reason or bounty description.
Value
100000000000000
Python
constant = substrate.get_constant('Tips', 'DataDepositPerByte')
TipCountdown
The period for which a tip remains open after is has achieved threshold tippers.
Value
14400
Python
constant = substrate.get_constant('Tips', 'TipCountdown')
TipFindersFee
The percent of the final tip which goes to the original reporter of the tip.
Value
20
Python
constant = substrate.get_constant('Tips', 'TipFindersFee')
TipReportDepositBase
The amount held on deposit for placing a tip report.
Value
1000000000000000000
Python
constant = substrate.get_constant('Tips', 'TipReportDepositBase')
Errors
ReasonTooBig
The reason given is just too big.
AlreadyKnown
The tip was already found/started.
UnknownTip
The tip hash is unknown.
NotFinder
The account attempting to retract the tip is not the finder of the tip.
StillOpen
The tip cannot be claimed/closed because there are not enough tippers yet.
Premature
The tip cannot be claimed/closed because it's still in the countdown period.
EvmAccounts
Calls
claim_account
Claim account mapping between Substrate accounts and EVM accounts. Ensure eth_address has not been mapped.
Attributes
| Name | Type |
|---|---|
| eth_address | EvmAddress |
| eth_signature | EcdsaSignature |
Python
call = substrate.compose_call(
'EvmAccounts', 'claim_account', {
'eth_address': '[u8; 20]',
'eth_signature': '[u8; 65]',
}
)
Events
ClaimAccount
Mapping between Substrate accounts and EVM accounts claim account. [account_id, evm_address]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | AccountId |
AccountId |
| None | EvmAddress |
[u8; 20] |
Storage functions
Accounts
Python
result = substrate.query(
'EvmAccounts', 'Accounts', ['[u8; 20]']
)
Return value
'AccountId'
EvmAddresses
Python
result = substrate.query(
'EvmAccounts', 'EvmAddresses', ['AccountId']
)
Return value
'[u8; 20]'
Errors
AccountIdHasMapped
AccountId has mapped
EthAddressHasMapped
Eth address has mapped
BadSignature
Bad signature
InvalidSignature
Invalid signature
NonZeroRefCount
Account ref count is not zero
StillHasActiveReserved
Account still has active reserved
CloverClaims
Calls
set_bridge_account_elastic
update the bridge account for the target network
Attributes
| Name | Type |
|---|---|
| network | BridgeNetworks |
| to | T::AccountId |
Python
call = substrate.compose_call(
'CloverClaims', 'set_bridge_account_elastic', {
'network': (
'BSC',
'Ethereum',
'CloverPara',
),
'to': 'AccountId',
}
)
set_claim_limit_elastic
Attributes
| Name | Type |
|---|---|
| network | BridgeNetworks |
| limit | BalanceOf<T> |
Python
call = substrate.compose_call(
'CloverClaims', 'set_claim_limit_elastic', {
'limit': 'u128',
'network': (
'BSC',
'Ethereum',
'CloverPara',
),
}
)
set_bridge_fee_elastic
Attributes
| Name | Type |
|---|---|
| network | BridgeNetworks |
| mint_fee | BalanceOf<T> |
| burn_fee | BalanceOf<T> |
Python
call = substrate.compose_call(
'CloverClaims', 'set_bridge_fee_elastic', {
'burn_fee': 'u128',
'mint_fee': 'u128',
'network': (
'BSC',
'Ethereum',
'CloverPara',
),
}
)
mint_claim_elastic
Attributes
| Name | Type |
|---|---|
| network | BridgeNetworks |
| tx | EthereumTxHash |
| who | EthereumAddress |
| value | BalanceOf<T> |
Python
call = substrate.compose_call(
'CloverClaims', 'mint_claim_elastic', {
'network': (
'BSC',
'Ethereum',
'CloverPara',
),
'tx': '[u8; 32]',
'value': 'u128',
'who': '[u8; 20]',
}
)
claim_elastic
Attributes
| Name | Type |
|---|---|
| network | BridgeNetworks |
| dest | T::AccountId |
| tx | EthereumTxHash |
| sig | EcdsaSignature |
Python
call = substrate.compose_call(
'CloverClaims', 'claim_elastic', {
'dest': 'AccountId',
'network': (
'BSC',
'Ethereum',
'CloverPara',
),
'sig': '[u8; 65]',
'tx': '[u8; 32]',
}
)
burn_elastic
Attributes
| Name | Type |
|---|---|
| network | BridgeNetworks |
| dest | EthereumAddress |
| amount | BalanceOf<T> |
Python
call = substrate.compose_call(
'CloverClaims', 'burn_elastic', {
'amount': 'u128',
'dest': '[u8; 20]',
'network': (
'BSC',
'Ethereum',
'CloverPara',
),
}
)
mint_and_send_claim_elastic
bridge between two clover like chains
Attributes
| Name | Type |
|---|---|
| network | BridgeNetworks |
| tx | EthereumTxHash |
| who | T::AccountId |
| value | BalanceOf<T> |
Python
call = substrate.compose_call(
'CloverClaims', 'mint_and_send_claim_elastic', {
'network': (
'BSC',
'Ethereum',
'CloverPara',
),
'tx': '[u8; 32]',
'value': 'u128',
'who': 'AccountId',
}
)
Events
BridgeAccountChanged
Bridge Account Changed
Attributes
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
MintSuccess
Mint claims successfully
Attributes
| Name | Type | Composition |
|---|---|---|
| None | EthereumTxHash |
[u8; 32] |
| None | EthereumAddress |
[u8; 20] |
| None | BalanceOf<T> |
u128 |
ClaimLimitUpdated
claim limit updated
Attributes
| Name | Type | Composition |
|---|---|---|
| None | BalanceOf<T> |
u128 |
Claimed
CLV claimed
Attributes
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | EthereumAddress |
[u8; 20] |
| None | BalanceOf<T> |
u128 |
Burned
Attributes
| Name | Type | Composition |
|---|---|---|
| None | T::AccountId |
AccountId |
| None | EthereumAddress |
[u8; 20] |
| None | BalanceOf<T> |
u128 |
MintFeeUpdated
Attributes
| Name | Type | Composition |
|---|---|---|
| None | BalanceOf<T> |
u128 |
BurnFeeUpdated
Attributes
| Name | Type | Composition |
|---|---|---|
| None | BalanceOf<T> |
u128 |
ElasticBridgeAccountChanged
Elastic bridge account changed
Attributes
| Name | Type | Composition |
|---|---|---|
| None | BridgeNetworks |
('BSC', 'Ethereum', 'CloverPara') |
| None | T::AccountId |
AccountId |
ElasticMintSuccess
Elastic mint claim successfully
Attributes
| Name | Type | Composition |
|---|---|---|
| None | BridgeNetworks |
('BSC', 'Ethereum', 'CloverPara') |
| None | EthereumTxHash |
[u8; 32] |
| None | EthereumAddress |
[u8; 20] |
| None | BalanceOf<T> |
u128 |
ElasticClaimLimitUpdated
Elastic claim limit updated for network
Attributes
| Name | Type | Composition |
|---|---|---|
| None | BridgeNetworks |
('BSC', 'Ethereum', 'CloverPara') |
| None | BalanceOf<T> |
u128 |
ElasticClaimed
CLV claimed for network
Attributes
| Name | Type | Composition |
|---|---|---|
| None | BridgeNetworks |
('BSC', 'Ethereum', 'CloverPara') |
| None | T::AccountId |
AccountId |
| None | EthereumAddress |
[u8; 20] |
| None | BalanceOf<T> |
u128 |
ElasticBurned
burned some balance and will bridge to specified network
Attributes
| Name | Type | Composition |
|---|---|---|
| None | BridgeNetworks |
('BSC', 'Ethereum', 'CloverPara') |
| None | T::AccountId |
AccountId |
| None | EthereumAddress |
[u8; 20] |
| None | BalanceOf<T> |
u128 |
ElasticFeeUpdated
elastic fee updated event, (network, mint fee, burn fee)
Attributes
| Name | Type | Composition |
|---|---|---|
| None | BridgeNetworks |
('BSC', 'Ethereum', 'CloverPara') |
| None | BalanceOf<T> |
u128 |
| None | BalanceOf<T> |
u128 |
Storage functions
BridgeAccount
Python
result = substrate.query(
'CloverClaims', 'BridgeAccount', []
)
Return value
(None, 'AccountId')
ClaimLimit
Python
result = substrate.query(
'CloverClaims', 'ClaimLimit', []
)
Return value
'u128'
Claims
Python
result = substrate.query(
'CloverClaims', 'Claims', ['[u8; 32]']
)
Return value
(None, ('[u8; 20]', 'u128', 'bool'))
MintFee
Python
result = substrate.query(
'CloverClaims', 'MintFee', []
)
Return value
(None, 'u128')
BurnFee
Python
result = substrate.query(
'CloverClaims', 'BurnFee', []
)
Return value
(None, 'u128')
ElasticBridgeAccounts
bridge account to mint bridge transactions it's a good practice to configure a separate bridge account for one bridge network
Python
result = substrate.query(
'CloverClaims', 'ElasticBridgeAccounts', [('BSC', 'Ethereum', 'CloverPara')]
)
Return value
(None, 'AccountId')
ElasticClaimLimits
Python
result = substrate.query(
'CloverClaims', 'ElasticClaimLimits', [('BSC', 'Ethereum', 'CloverPara')]
)
Return value
'u128'
BridgeFees
Python
result = substrate.query(
'CloverClaims', 'BridgeFees', [('BSC', 'Ethereum', 'CloverPara')]
)
Return value
('u128', 'u128')
ElasticClaims
claims that supports multiple ethereum compatible chains
Python
result = substrate.query(
'CloverClaims', 'ElasticClaims', [('BSC', 'Ethereum', 'CloverPara'), '[u8; 32]']
)
Return value
('[u8; 20]', 'u128', 'bool')
PalletStorageVersion
Python
result = substrate.query(
'CloverClaims', 'PalletStorageVersion', []
)
Return value
'u32'
Constants
PalletId
Value
'0x636c76636c61696d'
Python
constant = substrate.get_constant('CloverClaims', 'PalletId')
Errors
NoPermission
AlreadyMinted
AlreadyClaimed
ClaimLimitExceeded
TxNotMinted
InvalidEthereumSignature
SignatureNotMatch
InvalidAmount
BaseFee
Calls
set_base_fee_per_gas
Attributes
| Name | Type |
|---|---|
| fee | U256 |
Python
call = substrate.compose_call(
'BaseFee', 'set_base_fee_per_gas', {'fee': '[u64; 4]'}
)
set_is_active
Attributes
| Name | Type |
|---|---|
| is_active | bool |
Python
call = substrate.compose_call(
'BaseFee', 'set_is_active', {'is_active': 'bool'}
)
set_elasticity
Attributes
| Name | Type |
|---|---|
| elasticity | Permill |
Python
call = substrate.compose_call(
'BaseFee', 'set_elasticity', {'elasticity': 'u32'}
)
Events
NewBaseFeePerGas
Attributes
| Name | Type | Composition |
|---|---|---|
| None | U256 |
[u64; 4] |
BaseFeeOverflow
Attributes
No attributes
IsActive
Attributes
| Name | Type | Composition |
|---|---|---|
| None | bool |
bool |
NewElasticity
Attributes
| Name | Type | Composition |
|---|---|---|
| None | Permill |
u32 |
Storage functions
BaseFeePerGas
Python
result = substrate.query(
'BaseFee', 'BaseFeePerGas', []
)
Return value
'[u64; 4]'
IsActive
Python
result = substrate.query(
'BaseFee', 'IsActive', []
)
Return value
'bool'
Elasticity
Python
result = substrate.query(
'BaseFee', 'Elasticity', []
)
Return value
'u32'
XcmpQueue
Calls
service_overweight
Services a single overweight XCM.
origin: Must passExecuteOverweightOrigin.index: The index of the overweight XCM to serviceweight_limit: The amount of weight that XCM execution may take.
Errors:
- BadOverweightIndex: XCM under index is not found in the Overweight storage map.
- BadXcm: XCM under index cannot be properly decoded into a valid XCM format.
- WeightOverLimit: XCM execution may use greater weight_limit.
Events:
- OverweightServiced: On success.
Attributes
| Name | Type |
|---|---|
| index | OverweightIndex |
| weight_limit | Weight |
Python
call = substrate.compose_call(
'XcmpQueue', 'service_overweight', {
'index': 'u64',
'weight_limit': 'u64',
}
)
suspend_xcm_execution
Suspends all XCM executions for the XCMP queue, regardless of the sender's origin.
origin: Must passControllerOrigin.
Attributes
No attributes
Python
call = substrate.compose_call(
'XcmpQueue', 'suspend_xcm_execution', {}
)
resume_xcm_execution
Resumes all XCM executions for the XCMP queue.
Note that this function doesn't change the status of the in/out bound channels.
origin: Must passControllerOrigin.
Attributes
No attributes
Python
call = substrate.compose_call(
'XcmpQueue', 'resume_xcm_execution', {}
)
update_suspend_threshold
Overwrites the number of pages of messages which must be in the queue for the other side to be told to suspend their sending.
origin: Must passRoot.new: Desired value forQueueConfigData.suspend_value
Attributes
| Name | Type |
|---|---|
| new | u32 |
Python
call = substrate.compose_call(
'XcmpQueue', 'update_suspend_threshold', {'new': 'u32'}
)
update_drop_threshold
Overwrites the number of pages of messages which must be in the queue after which we drop any further messages from the channel.
origin: Must passRoot.new: Desired value forQueueConfigData.drop_threshold
Attributes
| Name | Type |
|---|---|
| new | u32 |
Python
call = substrate.compose_call(
'XcmpQueue', 'update_drop_threshold', {'new': 'u32'}
)
update_resume_threshold
Overwrites the number of pages of messages which the queue must be reduced to before it signals that message sending may recommence after it has been suspended.
origin: Must passRoot.new: Desired value forQueueConfigData.resume_threshold
Attributes
| Name | Type |
|---|---|
| new | u32 |
Python
call = substrate.compose_call(
'XcmpQueue', 'update_resume_threshold', {'new': 'u32'}
)
update_threshold_weight
Overwrites the amount of remaining weight under which we stop processing messages.
origin: Must passRoot.new: Desired value forQueueConfigData.threshold_weight
Attributes
| Name | Type |
|---|---|
| new | Weight |
Python
call = substrate.compose_call(
'XcmpQueue', 'update_threshold_weight', {'new': 'u64'}
)
update_weight_restrict_decay
Overwrites the speed to which the available weight approaches the maximum weight. A lower number results in a faster progression. A value of 1 makes the entire weight available initially.
origin: Must passRoot.new: Desired value forQueueConfigData.weight_restrict_decay.
Attributes
| Name | Type |
|---|---|
| new | Weight |
Python
call = substrate.compose_call(
'XcmpQueue', 'update_weight_restrict_decay', {'new': 'u64'}
)
update_xcmp_max_individual_weight
Overwrite the maximum amount of weight any individual message may consume. Messages above this weight go into the overweight queue and may only be serviced explicitly.
origin: Must passRoot.new: Desired value forQueueConfigData.xcmp_max_individual_weight.
Attributes
| Name | Type |
|---|---|
| new | Weight |
Python
call = substrate.compose_call(
'XcmpQueue', 'update_xcmp_max_individual_weight', {'new': 'u64'}
)
Events
Success
Some XCM was executed ok.
Attributes
| Name | Type | Composition |
|---|---|---|
| message_hash | Option<T::Hash> |
(None, '[u8; 32]') |
| weight | Weight |
u64 |
Fail
Some XCM failed.
Attributes
| Name | Type | Composition |
|---|---|---|
| message_hash | Option<T::Hash> |
(None, '[u8; 32]') |
| error | XcmError |
{'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None} |
| weight | Weight |
u64 |
BadVersion
Bad XCM version used.
Attributes
| Name | Type | Composition |
|---|---|---|
| message_hash | Option<T::Hash> |
(None, '[u8; 32]') |
BadFormat
Bad XCM format used.
Attributes
| Name | Type | Composition |
|---|---|---|
| message_hash | Option<T::Hash> |
(None, '[u8; 32]') |
UpwardMessageSent
An upward message was sent to the relay chain.
Attributes
| Name | Type | Composition |
|---|---|---|
| message_hash | Option<T::Hash> |
(None, '[u8; 32]') |
XcmpMessageSent
An HRMP message was sent to a sibling parachain.
Attributes
| Name | Type | Composition |
|---|---|---|
| message_hash | Option<T::Hash> |
(None, '[u8; 32]') |
OverweightEnqueued
An XCM exceeded the individual message weight budget.
Attributes
| Name | Type | Composition |
|---|---|---|
| sender | ParaId |
u32 |
| sent_at | RelayBlockNumber |
u32 |
| index | OverweightIndex |
u64 |
| required | Weight |
u64 |
OverweightServiced
An XCM from the overweight queue was executed with the given actual weight used.
Attributes
| Name | Type | Composition |
|---|---|---|
| index | OverweightIndex |
u64 |
| used | Weight |
u64 |
Storage functions
InboundXcmpStatus
Status of the inbound XCMP channels.
Python
result = substrate.query(
'XcmpQueue', 'InboundXcmpStatus', []
)
Return value
[
{
'message_metadata': [
(
'u32',
(
'ConcatenatedVersionedXcm',
'ConcatenatedEncodedBlob',
'Signals',
),
),
],
'sender': 'u32',
'state': ('Ok', 'Suspended'),
},
]
InboundXcmpMessages
Inbound aggregate XCMP messages. It can only be one per ParaId/block.
Python
result = substrate.query(
'XcmpQueue', 'InboundXcmpMessages', ['u32', 'u32']
)
Return value
'Bytes'
OutboundXcmpStatus
The non-empty XCMP channels in order of becoming non-empty, and the index of the first
and last outbound message. If the two indices are equal, then it indicates an empty
queue and there must be a non-Ok OutboundStatus. We assume queues grow no greater
than 65535 items. Queue indices for normal messages begin at one; zero is reserved in
case of the need to send a high-priority signal message this block.
The bool is true if there is a signal message waiting to be sent.
Python
result = substrate.query(
'XcmpQueue', 'OutboundXcmpStatus', []
)
Return value
[
{
'first_index': 'u16',
'last_index': 'u16',
'recipient': 'u32',
'signals_exist': 'bool',
'state': ('Ok', 'Suspended'),
},
]
OutboundXcmpMessages
The messages outbound in a given XCMP channel.
Python
result = substrate.query(
'XcmpQueue', 'OutboundXcmpMessages', ['u32', 'u16']
)
Return value
'Bytes'
SignalMessages
Any signal messages waiting to be sent.
Python
result = substrate.query(
'XcmpQueue', 'SignalMessages', ['u32']
)
Return value
'Bytes'
QueueConfig
The configuration which controls the dynamics of the outbound queue.
Python
result = substrate.query(
'XcmpQueue', 'QueueConfig', []
)
Return value
{
'drop_threshold': 'u32',
'resume_threshold': 'u32',
'suspend_threshold': 'u32',
'threshold_weight': 'u64',
'weight_restrict_decay': 'u64',
'xcmp_max_individual_weight': 'u64',
}
Overweight
The messages that exceeded max individual message weight budget.
These message stay in this storage map until they are manually dispatched via
service_overweight.
Python
result = substrate.query(
'XcmpQueue', 'Overweight', ['u64']
)
Return value
('u32', 'u32', 'Bytes')
OverweightCount
The number of overweight messages ever recorded in Overweight. Also doubles as the next
available free overweight index.
Python
result = substrate.query(
'XcmpQueue', 'OverweightCount', []
)
Return value
'u64'
QueueSuspended
Whether or not the XCMP queue is suspended from executing incoming XCMs or not.
Python
result = substrate.query(
'XcmpQueue', 'QueueSuspended', []
)
Return value
'bool'
Errors
FailedToSend
Failed to send XCM message.
BadXcmOrigin
Bad XCM origin.
BadXcm
Bad XCM data.
BadOverweightIndex
Bad overweight index.
WeightOverLimit
Provided weight is possibly not enough to execute the message.
PolkadotXcm
Calls
send
Attributes
| Name | Type |
|---|---|
| dest | Box<VersionedMultiLocation> |
| message | Box<VersionedXcm<()>> |
Python
call = substrate.compose_call(
'PolkadotXcm', 'send', {
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
},
'parents': 'u8',
},
},
'message': {
'V0': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
{
'AbstractFungible': 'InnerStruct',
'AbstractNonFungible': 'InnerStruct',
'All': None,
'AllAbstractFungible': 'InnerStruct',
'AllAbstractNonFungible': 'InnerStruct',
'AllConcreteFungible': 'InnerStruct',
'AllConcreteNonFungible': 'InnerStruct',
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': 'InnerStruct',
'ConcreteNonFungible': 'InnerStruct',
'None': None,
},
],
},
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::123',
],
},
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': 'InnerStruct',
'HrmpChannelClosing': 'InnerStruct',
'HrmpNewChannelOpenRequest': 'InnerStruct',
'QueryResponse': 'InnerStruct',
'RelayedFrom': 'InnerStruct',
'ReserveAssetDeposit': 'InnerStruct',
'TeleportAsset': 'InnerStruct',
'Transact': 'InnerStruct',
'TransferAsset': 'InnerStruct',
'TransferReserveAsset': 'InnerStruct',
'WithdrawAsset': 'InnerStruct',
},
'who': {
'Null': None,
'X1': 'scale_info::125',
'X2': (
'scale_info::125',
'scale_info::125',
),
'X3': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X4': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X5': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X6': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X7': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X8': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
},
},
'ReserveAssetDeposit': {
'assets': [
'scale_info::123',
],
'effects': [
'scale_info::342',
],
},
'TeleportAsset': {
'assets': [
'scale_info::123',
],
'effects': [
'scale_info::342',
],
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
'scale_info::123',
],
'dest': {
'Null': None,
'X1': 'scale_info::125',
'X2': (
'scale_info::125',
'scale_info::125',
),
'X3': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X4': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X5': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X6': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X7': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X8': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
},
},
'TransferReserveAsset': {
'assets': [
'scale_info::123',
],
'dest': {
'Null': None,
'X1': 'scale_info::125',
'X2': (
'scale_info::125',
'scale_info::125',
),
'X3': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X4': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X5': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X6': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X7': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X8': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
},
'effects': [
'scale_info::342',
],
},
'WithdrawAsset': {
'assets': [
'scale_info::123',
],
'effects': [
'scale_info::342',
],
},
},
'who': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'ReserveAssetDeposit': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::108',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::124',
},
'AllConcreteNonFungible': {
'class': 'scale_info::124',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::124',
},
'ConcreteNonFungible': {
'class': 'scale_info::124',
'instance': 'scale_info::108',
},
'None': None,
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::123',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::340',
],
},
'DepositAsset': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
},
'DepositReserveAsset': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'effects': [
'scale_info::342',
],
},
'ExchangeAsset': {
'give': [
'scale_info::123',
],
'receive': [
'scale_info::123',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::123',
],
'effects': [
'scale_info::342',
],
'reserve': 'scale_info::124',
},
'InitiateTeleport': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'effects': [
'scale_info::342',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'query_id': 'u64',
},
},
],
},
'TeleportAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::108',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::124',
},
'AllConcreteNonFungible': {
'class': 'scale_info::124',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::124',
},
'ConcreteNonFungible': {
'class': 'scale_info::124',
'instance': 'scale_info::108',
},
'None': None,
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::123',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::340',
],
},
'DepositAsset': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
},
'DepositReserveAsset': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'effects': [
'scale_info::342',
],
},
'ExchangeAsset': {
'give': [
'scale_info::123',
],
'receive': [
'scale_info::123',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::123',
],
'effects': [
'scale_info::342',
],
'reserve': 'scale_info::124',
},
'InitiateTeleport': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'effects': [
'scale_info::342',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'query_id': 'u64',
},
},
],
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::108',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::124',
},
'AllConcreteNonFungible': {
'class': 'scale_info::124',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::124',
},
'ConcreteNonFungible': {
'class': 'scale_info::124',
'instance': 'scale_info::108',
},
'None': None,
},
],
'dest': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'TransferReserveAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::108',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::124',
},
'AllConcreteNonFungible': {
'class': 'scale_info::124',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::124',
},
'ConcreteNonFungible': {
'class': 'scale_info::124',
'instance': 'scale_info::108',
},
'None': None,
},
],
'dest': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::123',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::340',
],
},
'DepositAsset': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
},
'DepositReserveAsset': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'effects': [
'scale_info::342',
],
},
'ExchangeAsset': {
'give': [
'scale_info::123',
],
'receive': [
'scale_info::123',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::123',
],
'effects': [
'scale_info::342',
],
'reserve': 'scale_info::124',
},
'InitiateTeleport': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'effects': [
'scale_info::342',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'query_id': 'u64',
},
},
],
},
'WithdrawAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::108',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::124',
},
'AllConcreteNonFungible': {
'class': 'scale_info::124',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::124',
},
'ConcreteNonFungible': {
'class': 'scale_info::124',
'instance': 'scale_info::108',
},
'None': None,
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::123',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::340',
],
},
'DepositAsset': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
},
'DepositReserveAsset': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'effects': [
'scale_info::342',
],
},
'ExchangeAsset': {
'give': [
'scale_info::123',
],
'receive': [
'scale_info::123',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::123',
],
'effects': [
'scale_info::342',
],
'reserve': 'scale_info::124',
},
'InitiateTeleport': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'effects': [
'scale_info::342',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'query_id': 'u64',
},
},
],
},
},
'V1': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::105',
],
'Version': 'u32',
},
},
'ReceiveTeleportedAsset': {
'assets': [
{
'fun': 'scale_info::107',
'id': 'scale_info::106',
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::105',
'halt_on_error': 'bool',
'instructions': [
'scale_info::345',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::116',
'beneficiary': 'scale_info::90',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'effects': [
'scale_info::347',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::116',
'receive': [
'scale_info::105',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::116',
'effects': [
'scale_info::347',
],
'reserve': 'scale_info::90',
},
'InitiateTeleport': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'effects': [
'scale_info::347',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'query_id': 'u64',
},
},
],
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::105',
],
'Version': 'u32',
},
},
'ReceiveTeleportedAsset': {
'assets': [
'scale_info::105',
],
'effects': [
'scale_info::347',
],
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': 'InnerStruct',
'HrmpChannelClosing': 'InnerStruct',
'HrmpNewChannelOpenRequest': 'InnerStruct',
'QueryResponse': 'InnerStruct',
'ReceiveTeleportedAsset': 'InnerStruct',
'RelayedFrom': 'InnerStruct',
'ReserveAssetDeposited': 'InnerStruct',
'SubscribeVersion': 'InnerStruct',
'Transact': 'InnerStruct',
'TransferAsset': 'InnerStruct',
'TransferReserveAsset': 'InnerStruct',
'UnsubscribeVersion': None,
'WithdrawAsset': 'InnerStruct',
},
'who': {
'Here': None,
'X1': 'scale_info::92',
'X2': (
'scale_info::92',
'scale_info::92',
),
'X3': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X4': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X5': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X6': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X7': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X8': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
},
},
'ReserveAssetDeposited': {
'assets': [
'scale_info::105',
],
'effects': [
'scale_info::347',
],
},
'SubscribeVersion': {
'max_response_weight': 'u64',
'query_id': 'u64',
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
'scale_info::105',
],
'beneficiary': {
'interior': 'scale_info::91',
'parents': 'u8',
},
},
'TransferReserveAsset': {
'assets': [
'scale_info::105',
],
'dest': {
'interior': 'scale_info::91',
'parents': 'u8',
},
'effects': [
'scale_info::347',
],
},
'UnsubscribeVersion': None,
'WithdrawAsset': {
'assets': [
'scale_info::105',
],
'effects': [
'scale_info::347',
],
},
},
'who': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
},
},
'ReserveAssetDeposited': {
'assets': [
{
'fun': 'scale_info::107',
'id': 'scale_info::106',
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::105',
'halt_on_error': 'bool',
'instructions': [
'scale_info::345',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::116',
'beneficiary': 'scale_info::90',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'effects': [
'scale_info::347',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::116',
'receive': [
'scale_info::105',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::116',
'effects': [
'scale_info::347',
],
'reserve': 'scale_info::90',
},
'InitiateTeleport': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'effects': [
'scale_info::347',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'query_id': 'u64',
},
},
],
},
'SubscribeVersion': {
'max_response_weight': 'u64',
'query_id': 'u64',
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
{
'fun': 'scale_info::107',
'id': 'scale_info::106',
},
],
'beneficiary': {
'interior': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::92',
'scale_info::92',
),
'X3': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X4': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X5': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X6': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X7': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X8': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
},
'parents': 'u8',
},
},
'TransferReserveAsset': {
'assets': [
{
'fun': 'scale_info::107',
'id': 'scale_info::106',
},
],
'dest': {
'interior': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::92',
'scale_info::92',
),
'X3': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X4': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X5': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X6': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X7': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X8': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
},
'parents': 'u8',
},
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::105',
'halt_on_error': 'bool',
'instructions': [
'scale_info::345',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::116',
'beneficiary': 'scale_info::90',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'effects': [
'scale_info::347',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::116',
'receive': [
'scale_info::105',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::116',
'effects': [
'scale_info::347',
],
'reserve': 'scale_info::90',
},
'InitiateTeleport': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'effects': [
'scale_info::347',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'query_id': 'u64',
},
},
],
},
'UnsubscribeVersion': None,
'WithdrawAsset': {
'assets': [
{
'fun': 'scale_info::107',
'id': 'scale_info::106',
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::105',
'halt_on_error': 'bool',
'instructions': [
'scale_info::345',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::116',
'beneficiary': 'scale_info::90',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'effects': [
'scale_info::347',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::116',
'receive': [
'scale_info::105',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::116',
'effects': [
'scale_info::347',
],
'reserve': 'scale_info::90',
},
'InitiateTeleport': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'effects': [
'scale_info::347',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'query_id': 'u64',
},
},
],
},
},
'V2': [
{
'BuyExecution': {
'fees': {
'fun': 'scale_info::107',
'id': 'scale_info::106',
},
'weight_limit': {
'Limited': 'u64',
'Unlimited': None,
},
},
'ClaimAsset': {
'assets': [
'scale_info::105',
],
'ticket': {
'interior': 'scale_info::91',
'parents': 'u8',
},
},
'ClearError': None,
'ClearOrigin': None,
'DepositAsset': {
'assets': {
'Definite': [
'scale_info::105',
],
'Wild': 'scale_info::117',
},
'beneficiary': {
'interior': 'scale_info::91',
'parents': 'u8',
},
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': {
'Definite': [
'scale_info::105',
],
'Wild': 'scale_info::117',
},
'dest': {
'interior': 'scale_info::91',
'parents': 'u8',
},
'max_assets': 'u32',
'xcm': [
'scale_info::102',
],
},
'DescendOrigin': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::92',
'scale_info::92',
),
'X3': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X4': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X5': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X6': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X7': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X8': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
},
'ExchangeAsset': {
'give': {
'Definite': [
'scale_info::105',
],
'Wild': 'scale_info::117',
},
'receive': [
'scale_info::105',
],
},
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'InitiateReserveWithdraw': {
'assets': {
'Definite': [
'scale_info::105',
],
'Wild': 'scale_info::117',
},
'reserve': {
'interior': 'scale_info::91',
'parents': 'u8',
},
'xcm': [
'scale_info::102',
],
},
'InitiateTeleport': {
'assets': {
'Definite': [
'scale_info::105',
],
'Wild': 'scale_info::117',
},
'dest': {
'interior': 'scale_info::91',
'parents': 'u8',
},
'xcm': [
'scale_info::102',
],
},
'QueryHolding': {
'assets': {
'Definite': [
'scale_info::105',
],
'Wild': 'scale_info::117',
},
'dest': {
'interior': 'scale_info::91',
'parents': 'u8',
},
'max_response_weight': 'u64',
'query_id': 'u64',
},
'QueryResponse': {
'max_weight': 'u64',
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::105',
],
'ExecutionResult': (
None,
(
'u32',
'scale_info::86',
),
),
'Null': None,
'Version': 'u32',
},
},
'ReceiveTeleportedAsset': [
'scale_info::105',
],
'RefundSurplus': None,
'ReportError': {
'dest': {
'interior': 'scale_info::91',
'parents': 'u8',
},
'max_response_weight': 'u64',
'query_id': 'u64',
},
'ReserveAssetDeposited': [
'scale_info::105',
],
'SetAppendix': [
'scale_info::102',
],
'SetErrorHandler': [
'scale_info::102',
],
'SubscribeVersion': {
'max_response_weight': 'u64',
'query_id': 'u64',
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
'scale_info::105',
],
'beneficiary': {
'interior': 'scale_info::91',
'parents': 'u8',
},
},
'TransferReserveAsset': {
'assets': [
'scale_info::105',
],
'dest': {
'interior': 'scale_info::91',
'parents': 'u8',
},
'xcm': [
'scale_info::102',
],
},
'Trap': 'u64',
'UnsubscribeVersion': None,
'WithdrawAsset': [
'scale_info::105',
],
},
],
},
}
)
teleport_assets
Teleport some assets from the local chain to some destination chain.
Fee payment on the destination side is made from the asset in the assets vector of
index fee_asset_item. The weight limit for fees is not provided and thus is unlimited,
with all fees taken as needed from the asset.
origin: Must be capable of withdrawing theassetsand executing XCM.dest: Destination context for the assets. Will typically beX2(Parent, Parachain(..))to send from parachain to parachain, orX1(Parachain(..))to send from relay to parachain.beneficiary: A beneficiary location for the assets in the context ofdest. Will generally be anAccountId32value.assets: The assets to be withdrawn. The first item should be the currency used to to pay the fee on thedestside. May not be empty.fee_asset_item: The index intoassetsof the item which should be used to pay fees.
Attributes
| Name | Type |
|---|---|
| dest | Box<VersionedMultiLocation> |
| beneficiary | Box<VersionedMultiLocation> |
| assets | Box<VersionedMultiAssets> |
| fee_asset_item | u32 |
Python
call = substrate.compose_call(
'PolkadotXcm', 'teleport_assets', {
'assets': {
'V0': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::125',
'scale_info::125',
),
'X3': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X4': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X5': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X6': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X7': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X8': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
},
},
'AllConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::125',
'scale_info::125',
),
'X3': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X4': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X5': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X6': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X7': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X8': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
},
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::125',
'scale_info::125',
),
'X3': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X4': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X5': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X6': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X7': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X8': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
},
},
'ConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::125',
'scale_info::125',
),
'X3': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X4': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X5': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X6': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X7': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X8': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
},
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'None': None,
},
],
'V1': [
{
'fun': {
'Fungible': 'u128',
'NonFungible': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'id': {
'Abstract': 'Bytes',
'Concrete': {
'interior': 'scale_info::91',
'parents': 'u8',
},
},
},
],
},
'beneficiary': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
},
'parents': 'u8',
},
},
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
},
'parents': 'u8',
},
},
'fee_asset_item': 'u32',
}
)
reserve_transfer_assets
Transfer some assets from the local chain to the sovereign account of a destination chain and forward a notification XCM.
Fee payment on the destination side is made from the asset in the assets vector of
index fee_asset_item. The weight limit for fees is not provided and thus is unlimited,
with all fees taken as needed from the asset.
origin: Must be capable of withdrawing theassetsand executing XCM.dest: Destination context for the assets. Will typically beX2(Parent, Parachain(..))to send from parachain to parachain, orX1(Parachain(..))to send from relay to parachain.beneficiary: A beneficiary location for the assets in the context ofdest. Will generally be anAccountId32value.assets: The assets to be withdrawn. This should include the assets used to pay the fee on thedestside.fee_asset_item: The index intoassetsof the item which should be used to pay fees.
Attributes
| Name | Type |
|---|---|
| dest | Box<VersionedMultiLocation> |
| beneficiary | Box<VersionedMultiLocation> |
| assets | Box<VersionedMultiAssets> |
| fee_asset_item | u32 |
Python
call = substrate.compose_call(
'PolkadotXcm', 'reserve_transfer_assets', {
'assets': {
'V0': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::125',
'scale_info::125',
),
'X3': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X4': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X5': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X6': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X7': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X8': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
},
},
'AllConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::125',
'scale_info::125',
),
'X3': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X4': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X5': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X6': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X7': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X8': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
},
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::125',
'scale_info::125',
),
'X3': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X4': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X5': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X6': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X7': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X8': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
},
},
'ConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::125',
'scale_info::125',
),
'X3': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X4': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X5': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X6': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X7': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X8': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
},
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'None': None,
},
],
'V1': [
{
'fun': {
'Fungible': 'u128',
'NonFungible': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'id': {
'Abstract': 'Bytes',
'Concrete': {
'interior': 'scale_info::91',
'parents': 'u8',
},
},
},
],
},
'beneficiary': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
},
'parents': 'u8',
},
},
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
},
'parents': 'u8',
},
},
'fee_asset_item': 'u32',
}
)
execute
Execute an XCM message from a local, signed, origin.
An event is deposited indicating whether msg could be executed completely or only
partially.
No more than max_weight will be used in its attempted execution. If this is less than the
maximum amount of weight that the message could take to be executed, then no execution
attempt will be made.
NOTE: A successful return to this does not imply that the msg was executed successfully
to completion; only that some of it was executed.
Attributes
| Name | Type |
|---|---|
| message | Box<VersionedXcm<<T as SysConfig>::Call>> |
| max_weight | Weight |
Python
call = substrate.compose_call(
'PolkadotXcm', 'execute', {
'max_weight': 'u64',
'message': {
'V0': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
{
'AbstractFungible': 'InnerStruct',
'AbstractNonFungible': 'InnerStruct',
'All': None,
'AllAbstractFungible': 'InnerStruct',
'AllAbstractNonFungible': 'InnerStruct',
'AllConcreteFungible': 'InnerStruct',
'AllConcreteNonFungible': 'InnerStruct',
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': 'InnerStruct',
'ConcreteNonFungible': 'InnerStruct',
'None': None,
},
],
},
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::123',
],
},
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': 'InnerStruct',
'HrmpChannelClosing': 'InnerStruct',
'HrmpNewChannelOpenRequest': 'InnerStruct',
'QueryResponse': 'InnerStruct',
'RelayedFrom': 'InnerStruct',
'ReserveAssetDeposit': 'InnerStruct',
'TeleportAsset': 'InnerStruct',
'Transact': 'InnerStruct',
'TransferAsset': 'InnerStruct',
'TransferReserveAsset': 'InnerStruct',
'WithdrawAsset': 'InnerStruct',
},
'who': {
'Null': None,
'X1': 'scale_info::125',
'X2': (
'scale_info::125',
'scale_info::125',
),
'X3': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X4': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X5': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X6': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X7': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X8': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
},
},
'ReserveAssetDeposit': {
'assets': [
'scale_info::123',
],
'effects': [
'scale_info::353',
],
},
'TeleportAsset': {
'assets': [
'scale_info::123',
],
'effects': [
'scale_info::353',
],
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
'scale_info::123',
],
'dest': {
'Null': None,
'X1': 'scale_info::125',
'X2': (
'scale_info::125',
'scale_info::125',
),
'X3': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X4': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X5': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X6': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X7': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X8': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
},
},
'TransferReserveAsset': {
'assets': [
'scale_info::123',
],
'dest': {
'Null': None,
'X1': 'scale_info::125',
'X2': (
'scale_info::125',
'scale_info::125',
),
'X3': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X4': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X5': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X6': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X7': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X8': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
},
'effects': [
'scale_info::342',
],
},
'WithdrawAsset': {
'assets': [
'scale_info::123',
],
'effects': [
'scale_info::353',
],
},
},
'who': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'ReserveAssetDeposit': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::108',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::124',
},
'AllConcreteNonFungible': {
'class': 'scale_info::124',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::124',
},
'ConcreteNonFungible': {
'class': 'scale_info::124',
'instance': 'scale_info::108',
},
'None': None,
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::123',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::351',
],
},
'DepositAsset': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
},
'DepositReserveAsset': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'effects': [
'scale_info::342',
],
},
'ExchangeAsset': {
'give': [
'scale_info::123',
],
'receive': [
'scale_info::123',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::123',
],
'effects': [
'scale_info::342',
],
'reserve': 'scale_info::124',
},
'InitiateTeleport': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'effects': [
'scale_info::342',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'query_id': 'u64',
},
},
],
},
'TeleportAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::108',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::124',
},
'AllConcreteNonFungible': {
'class': 'scale_info::124',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::124',
},
'ConcreteNonFungible': {
'class': 'scale_info::124',
'instance': 'scale_info::108',
},
'None': None,
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::123',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::351',
],
},
'DepositAsset': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
},
'DepositReserveAsset': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'effects': [
'scale_info::342',
],
},
'ExchangeAsset': {
'give': [
'scale_info::123',
],
'receive': [
'scale_info::123',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::123',
],
'effects': [
'scale_info::342',
],
'reserve': 'scale_info::124',
},
'InitiateTeleport': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'effects': [
'scale_info::342',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'query_id': 'u64',
},
},
],
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::108',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::124',
},
'AllConcreteNonFungible': {
'class': 'scale_info::124',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::124',
},
'ConcreteNonFungible': {
'class': 'scale_info::124',
'instance': 'scale_info::108',
},
'None': None,
},
],
'dest': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'TransferReserveAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::108',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::124',
},
'AllConcreteNonFungible': {
'class': 'scale_info::124',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::124',
},
'ConcreteNonFungible': {
'class': 'scale_info::124',
'instance': 'scale_info::108',
},
'None': None,
},
],
'dest': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::123',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::340',
],
},
'DepositAsset': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
},
'DepositReserveAsset': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'effects': [
'scale_info::342',
],
},
'ExchangeAsset': {
'give': [
'scale_info::123',
],
'receive': [
'scale_info::123',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::123',
],
'effects': [
'scale_info::342',
],
'reserve': 'scale_info::124',
},
'InitiateTeleport': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'effects': [
'scale_info::342',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'query_id': 'u64',
},
},
],
},
'WithdrawAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::108',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::124',
},
'AllConcreteNonFungible': {
'class': 'scale_info::124',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::124',
},
'ConcreteNonFungible': {
'class': 'scale_info::124',
'instance': 'scale_info::108',
},
'None': None,
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::123',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::351',
],
},
'DepositAsset': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
},
'DepositReserveAsset': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'effects': [
'scale_info::342',
],
},
'ExchangeAsset': {
'give': [
'scale_info::123',
],
'receive': [
'scale_info::123',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::123',
],
'effects': [
'scale_info::342',
],
'reserve': 'scale_info::124',
},
'InitiateTeleport': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'effects': [
'scale_info::342',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'query_id': 'u64',
},
},
],
},
},
'V1': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::105',
],
'Version': 'u32',
},
},
'ReceiveTeleportedAsset': {
'assets': [
{
'fun': 'scale_info::107',
'id': 'scale_info::106',
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::105',
'halt_on_error': 'bool',
'instructions': [
'scale_info::356',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::116',
'beneficiary': 'scale_info::90',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'effects': [
'scale_info::347',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::116',
'receive': [
'scale_info::105',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::116',
'effects': [
'scale_info::347',
],
'reserve': 'scale_info::90',
},
'InitiateTeleport': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'effects': [
'scale_info::347',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'query_id': 'u64',
},
},
],
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::105',
],
'Version': 'u32',
},
},
'ReceiveTeleportedAsset': {
'assets': [
'scale_info::105',
],
'effects': [
'scale_info::358',
],
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': 'InnerStruct',
'HrmpChannelClosing': 'InnerStruct',
'HrmpNewChannelOpenRequest': 'InnerStruct',
'QueryResponse': 'InnerStruct',
'ReceiveTeleportedAsset': 'InnerStruct',
'RelayedFrom': 'InnerStruct',
'ReserveAssetDeposited': 'InnerStruct',
'SubscribeVersion': 'InnerStruct',
'Transact': 'InnerStruct',
'TransferAsset': 'InnerStruct',
'TransferReserveAsset': 'InnerStruct',
'UnsubscribeVersion': None,
'WithdrawAsset': 'InnerStruct',
},
'who': {
'Here': None,
'X1': 'scale_info::92',
'X2': (
'scale_info::92',
'scale_info::92',
),
'X3': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X4': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X5': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X6': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X7': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X8': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
},
},
'ReserveAssetDeposited': {
'assets': [
'scale_info::105',
],
'effects': [
'scale_info::358',
],
},
'SubscribeVersion': {
'max_response_weight': 'u64',
'query_id': 'u64',
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
'scale_info::105',
],
'beneficiary': {
'interior': 'scale_info::91',
'parents': 'u8',
},
},
'TransferReserveAsset': {
'assets': [
'scale_info::105',
],
'dest': {
'interior': 'scale_info::91',
'parents': 'u8',
},
'effects': [
'scale_info::347',
],
},
'UnsubscribeVersion': None,
'WithdrawAsset': {
'assets': [
'scale_info::105',
],
'effects': [
'scale_info::358',
],
},
},
'who': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
},
},
'ReserveAssetDeposited': {
'assets': [
{
'fun': 'scale_info::107',
'id': 'scale_info::106',
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::105',
'halt_on_error': 'bool',
'instructions': [
'scale_info::356',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::116',
'beneficiary': 'scale_info::90',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'effects': [
'scale_info::347',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::116',
'receive': [
'scale_info::105',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::116',
'effects': [
'scale_info::347',
],
'reserve': 'scale_info::90',
},
'InitiateTeleport': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'effects': [
'scale_info::347',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'query_id': 'u64',
},
},
],
},
'SubscribeVersion': {
'max_response_weight': 'u64',
'query_id': 'u64',
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
{
'fun': 'scale_info::107',
'id': 'scale_info::106',
},
],
'beneficiary': {
'interior': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::92',
'scale_info::92',
),
'X3': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X4': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X5': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X6': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X7': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X8': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
},
'parents': 'u8',
},
},
'TransferReserveAsset': {
'assets': [
{
'fun': 'scale_info::107',
'id': 'scale_info::106',
},
],
'dest': {
'interior': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::92',
'scale_info::92',
),
'X3': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X4': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X5': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X6': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X7': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X8': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
},
'parents': 'u8',
},
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::105',
'halt_on_error': 'bool',
'instructions': [
'scale_info::345',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::116',
'beneficiary': 'scale_info::90',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'effects': [
'scale_info::347',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::116',
'receive': [
'scale_info::105',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::116',
'effects': [
'scale_info::347',
],
'reserve': 'scale_info::90',
},
'InitiateTeleport': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'effects': [
'scale_info::347',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'query_id': 'u64',
},
},
],
},
'UnsubscribeVersion': None,
'WithdrawAsset': {
'assets': [
{
'fun': 'scale_info::107',
'id': 'scale_info::106',
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::105',
'halt_on_error': 'bool',
'instructions': [
'scale_info::356',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::116',
'beneficiary': 'scale_info::90',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'effects': [
'scale_info::347',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::116',
'receive': [
'scale_info::105',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::116',
'effects': [
'scale_info::347',
],
'reserve': 'scale_info::90',
},
'InitiateTeleport': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'effects': [
'scale_info::347',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'query_id': 'u64',
},
},
],
},
},
'V2': [
{
'BuyExecution': {
'fees': {
'fun': 'scale_info::107',
'id': 'scale_info::106',
},
'weight_limit': {
'Limited': 'u64',
'Unlimited': None,
},
},
'ClaimAsset': {
'assets': [
'scale_info::105',
],
'ticket': {
'interior': 'scale_info::91',
'parents': 'u8',
},
},
'ClearError': None,
'ClearOrigin': None,
'DepositAsset': {
'assets': {
'Definite': [
'scale_info::105',
],
'Wild': 'scale_info::117',
},
'beneficiary': {
'interior': 'scale_info::91',
'parents': 'u8',
},
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': {
'Definite': [
'scale_info::105',
],
'Wild': 'scale_info::117',
},
'dest': {
'interior': 'scale_info::91',
'parents': 'u8',
},
'max_assets': 'u32',
'xcm': [
'scale_info::102',
],
},
'DescendOrigin': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::92',
'scale_info::92',
),
'X3': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X4': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X5': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X6': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X7': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X8': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
},
'ExchangeAsset': {
'give': {
'Definite': [
'scale_info::105',
],
'Wild': 'scale_info::117',
},
'receive': [
'scale_info::105',
],
},
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'InitiateReserveWithdraw': {
'assets': {
'Definite': [
'scale_info::105',
],
'Wild': 'scale_info::117',
},
'reserve': {
'interior': 'scale_info::91',
'parents': 'u8',
},
'xcm': [
'scale_info::102',
],
},
'InitiateTeleport': {
'assets': {
'Definite': [
'scale_info::105',
],
'Wild': 'scale_info::117',
},
'dest': {
'interior': 'scale_info::91',
'parents': 'u8',
},
'xcm': [
'scale_info::102',
],
},
'QueryHolding': {
'assets': {
'Definite': [
'scale_info::105',
],
'Wild': 'scale_info::117',
},
'dest': {
'interior': 'scale_info::91',
'parents': 'u8',
},
'max_response_weight': 'u64',
'query_id': 'u64',
},
'QueryResponse': {
'max_weight': 'u64',
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::105',
],
'ExecutionResult': (
None,
(
'u32',
'scale_info::86',
),
),
'Null': None,
'Version': 'u32',
},
},
'ReceiveTeleportedAsset': [
'scale_info::105',
],
'RefundSurplus': None,
'ReportError': {
'dest': {
'interior': 'scale_info::91',
'parents': 'u8',
},
'max_response_weight': 'u64',
'query_id': 'u64',
},
'ReserveAssetDeposited': [
'scale_info::105',
],
'SetAppendix': [
'scale_info::362',
],
'SetErrorHandler': [
'scale_info::362',
],
'SubscribeVersion': {
'max_response_weight': 'u64',
'query_id': 'u64',
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
'scale_info::105',
],
'beneficiary': {
'interior': 'scale_info::91',
'parents': 'u8',
},
},
'TransferReserveAsset': {
'assets': [
'scale_info::105',
],
'dest': {
'interior': 'scale_info::91',
'parents': 'u8',
},
'xcm': [
'scale_info::102',
],
},
'Trap': 'u64',
'UnsubscribeVersion': None,
'WithdrawAsset': [
'scale_info::105',
],
},
],
},
}
)
force_xcm_version
Extoll that a particular destination can be communicated with through a particular version of XCM.
origin: Must be Root.location: The destination that is being described.xcm_version: The latest version of XCM thatlocationsupports.
Attributes
| Name | Type |
|---|---|
| location | Box<MultiLocation> |
| xcm_version | XcmVersion |
Python
call = substrate.compose_call(
'PolkadotXcm', 'force_xcm_version', {
'location': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'parents': 'u8',
},
'xcm_version': 'u32',
}
)
force_default_xcm_version
Set a safe XCM version (the version that XCM should be encoded with if the most recent version a destination can accept is unknown).
origin: Must be Root.maybe_xcm_version: The default XCM encoding version, orNoneto disable.
Attributes
| Name | Type |
|---|---|
| maybe_xcm_version | Option<XcmVersion> |
Python
call = substrate.compose_call(
'PolkadotXcm', 'force_default_xcm_version', {'maybe_xcm_version': (None, 'u32')}
)
force_subscribe_version_notify
Ask a location to notify us regarding their XCM version and any changes to it.
origin: Must be Root.location: The location to which we should subscribe for XCM version notifications.
Attributes
| Name | Type |
|---|---|
| location | Box<VersionedMultiLocation> |
Python
call = substrate.compose_call(
'PolkadotXcm', 'force_subscribe_version_notify', {
'location': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
},
'parents': 'u8',
},
},
}
)
force_unsubscribe_version_notify
Require that a particular destination should no longer notify us regarding any XCM version changes.
origin: Must be Root.location: The location to which we are currently subscribed for XCM version notifications which we no longer desire.
Attributes
| Name | Type |
|---|---|
| location | Box<VersionedMultiLocation> |
Python
call = substrate.compose_call(
'PolkadotXcm', 'force_unsubscribe_version_notify', {
'location': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
},
'parents': 'u8',
},
},
}
)
limited_reserve_transfer_assets
Transfer some assets from the local chain to the sovereign account of a destination chain and forward a notification XCM.
Fee payment on the destination side is made from the asset in the assets vector of
index fee_asset_item, up to enough to pay for weight_limit of weight. If more weight
is needed than weight_limit, then the operation will fail and the assets send may be
at risk.
origin: Must be capable of withdrawing theassetsand executing XCM.dest: Destination context for the assets. Will typically beX2(Parent, Parachain(..))to send from parachain to parachain, orX1(Parachain(..))to send from relay to parachain.beneficiary: A beneficiary location for the assets in the context ofdest. Will generally be anAccountId32value.assets: The assets to be withdrawn. This should include the assets used to pay the fee on thedestside.fee_asset_item: The index intoassetsof the item which should be used to pay fees.weight_limit: The remote-side weight limit, if any, for the XCM fee purchase.
Attributes
| Name | Type |
|---|---|
| dest | Box<VersionedMultiLocation> |
| beneficiary | Box<VersionedMultiLocation> |
| assets | Box<VersionedMultiAssets> |
| fee_asset_item | u32 |
| weight_limit | WeightLimit |
Python
call = substrate.compose_call(
'PolkadotXcm', 'limited_reserve_transfer_assets', {
'assets': {
'V0': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::125',
'scale_info::125',
),
'X3': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X4': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X5': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X6': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X7': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X8': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
},
},
'AllConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::125',
'scale_info::125',
),
'X3': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X4': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X5': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X6': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X7': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X8': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
},
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::125',
'scale_info::125',
),
'X3': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X4': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X5': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X6': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X7': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X8': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
},
},
'ConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::125',
'scale_info::125',
),
'X3': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X4': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X5': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X6': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X7': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X8': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
},
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'None': None,
},
],
'V1': [
{
'fun': {
'Fungible': 'u128',
'NonFungible': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'id': {
'Abstract': 'Bytes',
'Concrete': {
'interior': 'scale_info::91',
'parents': 'u8',
},
},
},
],
},
'beneficiary': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
},
'parents': 'u8',
},
},
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
},
'parents': 'u8',
},
},
'fee_asset_item': 'u32',
'weight_limit': {
'Limited': 'u64',
'Unlimited': None,
},
}
)
limited_teleport_assets
Teleport some assets from the local chain to some destination chain.
Fee payment on the destination side is made from the asset in the assets vector of
index fee_asset_item, up to enough to pay for weight_limit of weight. If more weight
is needed than weight_limit, then the operation will fail and the assets send may be
at risk.
origin: Must be capable of withdrawing theassetsand executing XCM.dest: Destination context for the assets. Will typically beX2(Parent, Parachain(..))to send from parachain to parachain, orX1(Parachain(..))to send from relay to parachain.beneficiary: A beneficiary location for the assets in the context ofdest. Will generally be anAccountId32value.assets: The assets to be withdrawn. The first item should be the currency used to to pay the fee on thedestside. May not be empty.fee_asset_item: The index intoassetsof the item which should be used to pay fees.weight_limit: The remote-side weight limit, if any, for the XCM fee purchase.
Attributes
| Name | Type |
|---|---|
| dest | Box<VersionedMultiLocation> |
| beneficiary | Box<VersionedMultiLocation> |
| assets | Box<VersionedMultiAssets> |
| fee_asset_item | u32 |
| weight_limit | WeightLimit |
Python
call = substrate.compose_call(
'PolkadotXcm', 'limited_teleport_assets', {
'assets': {
'V0': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::125',
'scale_info::125',
),
'X3': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X4': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X5': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X6': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X7': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X8': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
},
},
'AllConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::125',
'scale_info::125',
),
'X3': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X4': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X5': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X6': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X7': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X8': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
},
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::125',
'scale_info::125',
),
'X3': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X4': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X5': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X6': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X7': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X8': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
},
},
'ConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::125',
'scale_info::125',
),
'X3': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X4': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X5': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X6': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X7': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X8': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
},
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'None': None,
},
],
'V1': [
{
'fun': {
'Fungible': 'u128',
'NonFungible': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'id': {
'Abstract': 'Bytes',
'Concrete': {
'interior': 'scale_info::91',
'parents': 'u8',
},
},
},
],
},
'beneficiary': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
},
'parents': 'u8',
},
},
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
},
'parents': 'u8',
},
},
'fee_asset_item': 'u32',
'weight_limit': {
'Limited': 'u64',
'Unlimited': None,
},
}
)
Events
Attempted
Execution of an XCM message was attempted.
[ outcome ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | xcm::latest::Outcome |
{'Complete': 'u64', 'Incomplete': ('u64', {'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None}), 'Error': {'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None}} |
Sent
A XCM message was sent.
[ origin, destination, message ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}})}} |
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}})}} |
| None | Xcm<()> |
[{'WithdrawAsset': ['scale_info::105'], 'ReserveAssetDeposited': ['scale_info::105'], 'ReceiveTeleportedAsset': ['scale_info::105'], 'QueryResponse': {'query_id': 'u64', 'response': {'Null': None, 'Assets': ['scale_info::105'], 'ExecutionResult': (None, ('u32', 'scale_info::86')), 'Version': 'u32'}, 'max_weight': 'u64'}, 'TransferAsset': {'assets': ['scale_info::105'], 'beneficiary': {'parents': 'u8', 'interior': 'scale_info::91'}}, 'TransferReserveAsset': {'assets': ['scale_info::105'], 'dest': {'parents': 'u8', 'interior': 'scale_info::91'}, 'xcm': ['scale_info::102']}, 'Transact': {'origin_type': ('Native', 'SovereignAccount', 'Superuser', 'Xcm'), 'require_weight_at_most': 'u64', 'call': {'encoded': 'Bytes'}}, 'HrmpNewChannelOpenRequest': {'sender': 'u32', 'max_message_size': 'u32', 'max_capacity': 'u32'}, 'HrmpChannelAccepted': {'recipient': 'u32'}, 'HrmpChannelClosing': {'initiator': 'u32', 'sender': 'u32', 'recipient': 'u32'}, 'ClearOrigin': None, 'DescendOrigin': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, 'X2': ('scale_info::92', 'scale_info::92'), 'X3': ('scale_info::92', 'scale_info::92', 'scale_info::92'), 'X4': ('scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92'), 'X5': ('scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92'), 'X6': ('scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92'), 'X7': ('scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92'), 'X8': ('scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92')}, 'ReportError': {'query_id': 'u64', 'dest': {'parents': 'u8', 'interior': 'scale_info::91'}, 'max_response_weight': 'u64'}, 'DepositAsset': {'assets': {'Definite': ['scale_info::105'], 'Wild': 'scale_info::117'}, 'max_assets': 'u32', 'beneficiary': {'parents': 'u8', 'interior': 'scale_info::91'}}, 'DepositReserveAsset': {'assets': {'Definite': ['scale_info::105'], 'Wild': 'scale_info::117'}, 'max_assets': 'u32', 'dest': {'parents': 'u8', 'interior': 'scale_info::91'}, 'xcm': ['scale_info::102']}, 'ExchangeAsset': {'give': {'Definite': ['scale_info::105'], 'Wild': 'scale_info::117'}, 'receive': ['scale_info::105']}, 'InitiateReserveWithdraw': {'assets': {'Definite': ['scale_info::105'], 'Wild': 'scale_info::117'}, 'reserve': {'parents': 'u8', 'interior': 'scale_info::91'}, 'xcm': ['scale_info::102']}, 'InitiateTeleport': {'assets': {'Definite': ['scale_info::105'], 'Wild': 'scale_info::117'}, 'dest': {'parents': 'u8', 'interior': 'scale_info::91'}, 'xcm': ['scale_info::102']}, 'QueryHolding': {'query_id': 'u64', 'dest': {'parents': 'u8', 'interior': 'scale_info::91'}, 'assets': {'Definite': ['scale_info::105'], 'Wild': 'scale_info::117'}, 'max_response_weight': 'u64'}, 'BuyExecution': {'fees': {'id': 'scale_info::106', 'fun': 'scale_info::107'}, 'weight_limit': {'Unlimited': None, 'Limited': 'u64'}}, 'RefundSurplus': None, 'SetErrorHandler': ['scale_info::102'], 'SetAppendix': ['scale_info::102'], 'ClearError': None, 'ClaimAsset': {'assets': ['scale_info::105'], 'ticket': {'parents': 'u8', 'interior': 'scale_info::91'}}, 'Trap': 'u64', 'SubscribeVersion': {'query_id': 'u64', 'max_response_weight': 'u64'}, 'UnsubscribeVersion': None}] |
UnexpectedResponse
Query response received which does not match a registered query. This may be because a matching query was never registered, it may be because it is a duplicate response, or because the query timed out.
[ origin location, id ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}})}} |
| None | QueryId |
u64 |
ResponseReady
Query response has been received and is ready for taking with take_response. There is
no registered notification call.
[ id, response ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | QueryId |
u64 |
| None | Response |
{'Null': None, 'Assets': [{'id': {'Concrete': 'scale_info::90', 'Abstract': 'Bytes'}, 'fun': {'Fungible': 'u128', 'NonFungible': 'scale_info::108'}}], 'ExecutionResult': (None, ('u32', {'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None})), 'Version': 'u32'} |
Notified
Query response has been received and query is removed. The registered notification has been dispatched and executed successfully.
[ id, pallet index, call index ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | QueryId |
u64 |
| None | u8 |
u8 |
| None | u8 |
u8 |
NotifyOverweight
Query response has been received and query is removed. The registered notification could not be dispatched because the dispatch weight is greater than the maximum weight originally budgeted by this runtime for the query result.
[ id, pallet index, call index, actual weight, max budgeted weight ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | QueryId |
u64 |
| None | u8 |
u8 |
| None | u8 |
u8 |
| None | Weight |
u64 |
| None | Weight |
u64 |
NotifyDispatchError
Query response has been received and query is removed. There was a general error with dispatching the notification call.
[ id, pallet index, call index ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | QueryId |
u64 |
| None | u8 |
u8 |
| None | u8 |
u8 |
NotifyDecodeFailed
Query response has been received and query is removed. The dispatch was unable to be
decoded into a Call; this might be due to dispatch function having a signature which
is not (origin, QueryId, Response).
[ id, pallet index, call index ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | QueryId |
u64 |
| None | u8 |
u8 |
| None | u8 |
u8 |
InvalidResponder
Expected query response has been received but the origin location of the response does not match that expected. The query remains registered for a later, valid, response to be received and acted upon.
[ origin location, id, expected location ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}})}} |
| None | QueryId |
u64 |
| None | Option<MultiLocation> |
(None, {'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, 'X2': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X3': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X4': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X5': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X6': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X7': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X8': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'})}}) |
InvalidResponderVersion
Expected query response has been received but the expected origin location placed in storage by this runtime previously cannot be decoded. The query remains registered.
This is unexpected (since a location placed in storage in a previously executing runtime should be readable prior to query timeout) and dangerous since the possibly valid response will be dropped. Manual governance intervention is probably going to be needed.
[ origin location, id ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}})}} |
| None | QueryId |
u64 |
ResponseTaken
Received query response has been read and removed.
[ id ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | QueryId |
u64 |
AssetsTrapped
Some assets have been placed in an asset trap.
[ hash, origin, assets ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | H256 |
[u8; 32] |
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}})}} |
| None | VersionedMultiAssets |
{'V0': [{'None': None, 'All': None, 'AllFungible': None, 'AllNonFungible': None, 'AllAbstractFungible': {'id': 'Bytes'}, 'AllAbstractNonFungible': {'class': 'Bytes'}, 'AllConcreteFungible': {'id': {'Null': None, 'X1': 'scale_info::125', 'X2': ('scale_info::125', 'scale_info::125'), 'X3': ('scale_info::125', 'scale_info::125', 'scale_info::125'), 'X4': ('scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125'), 'X5': ('scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125'), 'X6': ('scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125'), 'X7': ('scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125'), 'X8': ('scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125')}}, 'AllConcreteNonFungible': {'class': {'Null': None, 'X1': 'scale_info::125', 'X2': ('scale_info::125', 'scale_info::125'), 'X3': ('scale_info::125', 'scale_info::125', 'scale_info::125'), 'X4': ('scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125'), 'X5': ('scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125'), 'X6': ('scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125'), 'X7': ('scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125'), 'X8': ('scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125')}}, 'AbstractFungible': {'id': 'Bytes', 'amount': 'u128'}, 'AbstractNonFungible': {'class': 'Bytes', 'instance': {'Undefined': None, 'Index': 'u128', 'Array4': '[u8; 4]', 'Array8': '[u8; 8]', 'Array16': '[u8; 16]', 'Array32': '[u8; 32]', 'Blob': 'Bytes'}}, 'ConcreteFungible': {'id': {'Null': None, 'X1': 'scale_info::125', 'X2': ('scale_info::125', 'scale_info::125'), 'X3': ('scale_info::125', 'scale_info::125', 'scale_info::125'), 'X4': ('scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125'), 'X5': ('scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125'), 'X6': ('scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125'), 'X7': ('scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125'), 'X8': ('scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125')}, 'amount': 'u128'}, 'ConcreteNonFungible': {'class': {'Null': None, 'X1': 'scale_info::125', 'X2': ('scale_info::125', 'scale_info::125'), 'X3': ('scale_info::125', 'scale_info::125', 'scale_info::125'), 'X4': ('scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125'), 'X5': ('scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125'), 'X6': ('scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125'), 'X7': ('scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125'), 'X8': ('scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125', 'scale_info::125')}, 'instance': {'Undefined': None, 'Index': 'u128', 'Array4': '[u8; 4]', 'Array8': '[u8; 8]', 'Array16': '[u8; 16]', 'Array32': '[u8; 32]', 'Blob': 'Bytes'}}}], 'V1': [{'id': {'Concrete': 'scale_info::90', 'Abstract': 'Bytes'}, 'fun': {'Fungible': 'u128', 'NonFungible': 'scale_info::108'}}]} |
VersionChangeNotified
An XCM version change notification message has been attempted to be sent.
[ destination, result ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}})}} |
| None | XcmVersion |
u32 |
SupportedVersionChanged
The supported version of a location has been changed. This might be through an automatic notification or a manual intervention.
[ location, XCM version ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}})}} |
| None | XcmVersion |
u32 |
NotifyTargetSendFail
A given location which had a version change subscription was dropped owing to an error sending the notification to it.
[ location, query ID, error ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}})}} |
| None | QueryId |
u64 |
| None | XcmError |
{'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None} |
NotifyTargetMigrationFail
A given location which had a version change subscription was dropped owing to an error migrating the location to our new XCM format.
[ location, query ID ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | VersionedMultiLocation |
{'V0': {'Null': None, 'X1': {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X3': ({'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X4': ({'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X5': ({'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X6': ({'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X7': ({'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X8': ({'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parent': None, 'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}})}, 'V1': {'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, 'X2': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X3': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X4': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X5': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X6': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X7': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X8': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'})}}} |
| None | QueryId |
u64 |
Storage functions
QueryCounter
The latest available query index.
Python
result = substrate.query(
'PolkadotXcm', 'QueryCounter', []
)
Return value
'u64'
Queries
The ongoing queries.
Python
result = substrate.query(
'PolkadotXcm', 'Queries', ['u64']
)
Return value
{
'Pending': {
'maybe_notify': (None, ('u8', 'u8')),
'responder': {
'V0': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': ('scale_info::125', 'scale_info::125'),
'X3': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X4': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X5': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X6': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X7': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X8': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
},
'V1': {
'interior': {
'Here': None,
'X1': 'scale_info::92',
'X2': ('scale_info::92', 'scale_info::92'),
'X3': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X4': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X5': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X6': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X7': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X8': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
},
'parents': 'u8',
},
},
'timeout': 'u32',
},
'Ready': {
'at': 'u32',
'response': {
'V0': {'Assets': ['scale_info::123']},
'V1': {'Assets': ['scale_info::105'], 'Version': 'u32'},
'V2': {
'Assets': ['scale_info::105'],
'ExecutionResult': (None, ('u32', 'scale_info::86')),
'Null': None,
'Version': 'u32',
},
},
},
'VersionNotifier': {
'is_active': 'bool',
'origin': {
'V0': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': ('scale_info::125', 'scale_info::125'),
'X3': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X4': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X5': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X6': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X7': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X8': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
},
'V1': {
'interior': {
'Here': None,
'X1': 'scale_info::92',
'X2': ('scale_info::92', 'scale_info::92'),
'X3': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X4': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X5': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X6': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X7': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X8': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
},
'parents': 'u8',
},
},
},
}
AssetTraps
The existing asset traps.
Key is the blake2 256 hash of (origin, versioned MultiAssets) pair. Value is the number of
times this pair has been trapped (usually just 1 if it exists at all).
Python
result = substrate.query(
'PolkadotXcm', 'AssetTraps', ['[u8; 32]']
)
Return value
'u32'
SafeXcmVersion
Default version to encode XCM when latest version of destination is unknown. If None,
then the destinations whose XCM version is unknown are considered unreachable.
Python
result = substrate.query(
'PolkadotXcm', 'SafeXcmVersion', []
)
Return value
'u32'
SupportedVersion
The Latest versions that we know various locations support.
Python
result = substrate.query(
'PolkadotXcm', 'SupportedVersion', [
'u32',
{
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
},
'parents': 'u8',
},
},
]
)
Return value
'u32'
VersionNotifiers
All locations that we have requested version notifications from.
Python
result = substrate.query(
'PolkadotXcm', 'VersionNotifiers', [
'u32',
{
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
},
'parents': 'u8',
},
},
]
)
Return value
'u64'
VersionNotifyTargets
The target locations that are subscribed to our version changes, as well as the most recent of our versions we informed them of.
Python
result = substrate.query(
'PolkadotXcm', 'VersionNotifyTargets', [
'u32',
{
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
},
'parents': 'u8',
},
},
]
)
Return value
('u64', 'u64', 'u32')
VersionDiscoveryQueue
Destinations whose latest XCM version we would like to know. Duplicates not allowed, and
the u32 counter is the number of times that a send to the destination has been attempted,
which is used as a prioritization.
Python
result = substrate.query(
'PolkadotXcm', 'VersionDiscoveryQueue', []
)
Return value
[
(
{
'V0': {
'Null': None,
'X1': 'scale_info::125',
'X2': ('scale_info::125', 'scale_info::125'),
'X3': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X4': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X5': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X6': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X7': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X8': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
},
'V1': {'interior': 'scale_info::91', 'parents': 'u8'},
},
'u32',
),
]
CurrentMigration
The current migration's stage, if any.
Python
result = substrate.query(
'PolkadotXcm', 'CurrentMigration', []
)
Return value
{
'MigrateAndNotifyOldTargets': None,
'MigrateSupportedVersion': None,
'MigrateVersionNotifiers': None,
'NotifyCurrentTargets': (None, 'Bytes'),
}
Errors
Unreachable
The desired destination was unreachable, generally because there is a no way of routing to it.
SendFailure
There was some other issue (i.e. not to do with routing) in sending the message. Perhaps a lack of space for buffering the message.
Filtered
The message execution fails the filter.
UnweighableMessage
The message's weight could not be determined.
DestinationNotInvertible
The destination MultiLocation provided cannot be inverted.
Empty
The assets to be sent are empty.
CannotReanchor
Could not re-anchor the assets to declare the fees for the destination chain.
TooManyAssets
Too many assets have been attempted for transfer.
InvalidOrigin
Origin is invalid for sending.
BadVersion
The version of the Versioned value used is not able to be interpreted.
BadLocation
The given location could not be used (e.g. because it cannot be expressed in the desired version of XCM).
NoSubscription
The referenced subscription could not be found.
AlreadySubscribed
The location is invalid since it already has a subscription from us.
CumulusXcm
Events
InvalidFormat
Downward message is invalid XCM. [ id ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | [u8; 8] |
[u8; 8] |
UnsupportedVersion
Downward message is unsupported version of XCM. [ id ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | [u8; 8] |
[u8; 8] |
ExecutedDownward
Downward message executed with the given outcome. [ id, outcome ]
Attributes
| Name | Type | Composition |
|---|---|---|
| None | [u8; 8] |
[u8; 8] |
| None | Outcome |
{'Complete': 'u64', 'Incomplete': ('u64', {'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None}), 'Error': {'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None}} |
DmpQueue
Calls
service_overweight
Service a single overweight message.
origin: Must passExecuteOverweightOrigin.index: The index of the overweight message to service.weight_limit: The amount of weight that message execution may take.
Errors:
- Unknown: Message of index is unknown.
- OverLimit: Message execution may use greater than weight_limit.
Events:
- OverweightServiced: On success.
Attributes
| Name | Type |
|---|---|
| index | OverweightIndex |
| weight_limit | Weight |
Python
call = substrate.compose_call(
'DmpQueue', 'service_overweight', {
'index': 'u64',
'weight_limit': 'u64',
}
)
Events
InvalidFormat
Downward message is invalid XCM.
Attributes
| Name | Type | Composition |
|---|---|---|
| message_id | MessageId |
[u8; 32] |
UnsupportedVersion
Downward message is unsupported version of XCM.
Attributes
| Name | Type | Composition |
|---|---|---|
| message_id | MessageId |
[u8; 32] |
ExecutedDownward
Downward message executed with the given outcome.
Attributes
| Name | Type | Composition |
|---|---|---|
| message_id | MessageId |
[u8; 32] |
| outcome | Outcome |
{'Complete': 'u64', 'Incomplete': ('u64', {'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None}), 'Error': {'Overflow': None, 'Unimplemented': None, 'UntrustedReserveLocation': None, 'UntrustedTeleportLocation': None, 'MultiLocationFull': None, 'MultiLocationNotInvertible': None, 'BadOrigin': None, 'InvalidLocation': None, 'AssetNotFound': None, 'FailedToTransactAsset': None, 'NotWithdrawable': None, 'LocationCannotHold': None, 'ExceedsMaxMessageSize': None, 'DestinationUnsupported': None, 'Transport': None, 'Unroutable': None, 'UnknownClaim': None, 'FailedToDecode': None, 'MaxWeightInvalid': None, 'NotHoldingFees': None, 'TooExpensive': None, 'Trap': 'u64', 'UnhandledXcmVersion': None, 'WeightLimitReached': 'u64', 'Barrier': None, 'WeightNotComputable': None}} |
WeightExhausted
The weight limit for handling downward messages was reached.
Attributes
| Name | Type | Composition |
|---|---|---|
| message_id | MessageId |
[u8; 32] |
| remaining_weight | Weight |
u64 |
| required_weight | Weight |
u64 |
OverweightEnqueued
Downward message is overweight and was placed in the overweight queue.
Attributes
| Name | Type | Composition |
|---|---|---|
| message_id | MessageId |
[u8; 32] |
| overweight_index | OverweightIndex |
u64 |
| required_weight | Weight |
u64 |
OverweightServiced
Downward message from the overweight queue was executed.
Attributes
| Name | Type | Composition |
|---|---|---|
| overweight_index | OverweightIndex |
u64 |
| weight_used | Weight |
u64 |
Storage functions
Configuration
The configuration.
Python
result = substrate.query(
'DmpQueue', 'Configuration', []
)
Return value
{'max_individual': 'u64'}
PageIndex
The page index.
Python
result = substrate.query(
'DmpQueue', 'PageIndex', []
)
Return value
{'begin_used': 'u32', 'end_used': 'u32', 'overweight_count': 'u64'}
Pages
The queue pages.
Python
result = substrate.query(
'DmpQueue', 'Pages', ['u32']
)
Return value
[('u32', 'Bytes')]
Overweight
The overweight messages.
Python
result = substrate.query(
'DmpQueue', 'Overweight', ['u64']
)
Return value
('u32', 'Bytes')
Errors
Unknown
The message index given is unknown.
OverLimit
The amount of weight given is possibly not enough for executing the message.
OrmlXcm
Calls
send_as_sovereign
Send an XCM message as parachain sovereign.
Attributes
| Name | Type |
|---|---|
| dest | Box<VersionedMultiLocation> |
| message | Box<VersionedXcm<()>> |
Python
call = substrate.compose_call(
'OrmlXcm', 'send_as_sovereign', {
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
},
'parents': 'u8',
},
},
'message': {
'V0': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
{
'AbstractFungible': 'InnerStruct',
'AbstractNonFungible': 'InnerStruct',
'All': None,
'AllAbstractFungible': 'InnerStruct',
'AllAbstractNonFungible': 'InnerStruct',
'AllConcreteFungible': 'InnerStruct',
'AllConcreteNonFungible': 'InnerStruct',
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': 'InnerStruct',
'ConcreteNonFungible': 'InnerStruct',
'None': None,
},
],
},
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::123',
],
},
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': 'InnerStruct',
'HrmpChannelClosing': 'InnerStruct',
'HrmpNewChannelOpenRequest': 'InnerStruct',
'QueryResponse': 'InnerStruct',
'RelayedFrom': 'InnerStruct',
'ReserveAssetDeposit': 'InnerStruct',
'TeleportAsset': 'InnerStruct',
'Transact': 'InnerStruct',
'TransferAsset': 'InnerStruct',
'TransferReserveAsset': 'InnerStruct',
'WithdrawAsset': 'InnerStruct',
},
'who': {
'Null': None,
'X1': 'scale_info::125',
'X2': (
'scale_info::125',
'scale_info::125',
),
'X3': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X4': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X5': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X6': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X7': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X8': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
},
},
'ReserveAssetDeposit': {
'assets': [
'scale_info::123',
],
'effects': [
'scale_info::342',
],
},
'TeleportAsset': {
'assets': [
'scale_info::123',
],
'effects': [
'scale_info::342',
],
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
'scale_info::123',
],
'dest': {
'Null': None,
'X1': 'scale_info::125',
'X2': (
'scale_info::125',
'scale_info::125',
),
'X3': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X4': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X5': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X6': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X7': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X8': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
},
},
'TransferReserveAsset': {
'assets': [
'scale_info::123',
],
'dest': {
'Null': None,
'X1': 'scale_info::125',
'X2': (
'scale_info::125',
'scale_info::125',
),
'X3': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X4': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X5': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X6': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X7': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X8': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
},
'effects': [
'scale_info::342',
],
},
'WithdrawAsset': {
'assets': [
'scale_info::123',
],
'effects': [
'scale_info::342',
],
},
},
'who': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'ReserveAssetDeposit': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::108',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::124',
},
'AllConcreteNonFungible': {
'class': 'scale_info::124',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::124',
},
'ConcreteNonFungible': {
'class': 'scale_info::124',
'instance': 'scale_info::108',
},
'None': None,
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::123',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::340',
],
},
'DepositAsset': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
},
'DepositReserveAsset': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'effects': [
'scale_info::342',
],
},
'ExchangeAsset': {
'give': [
'scale_info::123',
],
'receive': [
'scale_info::123',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::123',
],
'effects': [
'scale_info::342',
],
'reserve': 'scale_info::124',
},
'InitiateTeleport': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'effects': [
'scale_info::342',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'query_id': 'u64',
},
},
],
},
'TeleportAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::108',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::124',
},
'AllConcreteNonFungible': {
'class': 'scale_info::124',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::124',
},
'ConcreteNonFungible': {
'class': 'scale_info::124',
'instance': 'scale_info::108',
},
'None': None,
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::123',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::340',
],
},
'DepositAsset': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
},
'DepositReserveAsset': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'effects': [
'scale_info::342',
],
},
'ExchangeAsset': {
'give': [
'scale_info::123',
],
'receive': [
'scale_info::123',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::123',
],
'effects': [
'scale_info::342',
],
'reserve': 'scale_info::124',
},
'InitiateTeleport': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'effects': [
'scale_info::342',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'query_id': 'u64',
},
},
],
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::108',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::124',
},
'AllConcreteNonFungible': {
'class': 'scale_info::124',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::124',
},
'ConcreteNonFungible': {
'class': 'scale_info::124',
'instance': 'scale_info::108',
},
'None': None,
},
],
'dest': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'TransferReserveAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::108',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::124',
},
'AllConcreteNonFungible': {
'class': 'scale_info::124',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::124',
},
'ConcreteNonFungible': {
'class': 'scale_info::124',
'instance': 'scale_info::108',
},
'None': None,
},
],
'dest': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::123',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::340',
],
},
'DepositAsset': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
},
'DepositReserveAsset': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'effects': [
'scale_info::342',
],
},
'ExchangeAsset': {
'give': [
'scale_info::123',
],
'receive': [
'scale_info::123',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::123',
],
'effects': [
'scale_info::342',
],
'reserve': 'scale_info::124',
},
'InitiateTeleport': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'effects': [
'scale_info::342',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'query_id': 'u64',
},
},
],
},
'WithdrawAsset': {
'assets': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': 'scale_info::108',
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': 'scale_info::124',
},
'AllConcreteNonFungible': {
'class': 'scale_info::124',
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': 'scale_info::124',
},
'ConcreteNonFungible': {
'class': 'scale_info::124',
'instance': 'scale_info::108',
},
'None': None,
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::123',
'halt_on_error': 'bool',
'weight': 'u64',
'xcm': [
'scale_info::340',
],
},
'DepositAsset': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
},
'DepositReserveAsset': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'effects': [
'scale_info::342',
],
},
'ExchangeAsset': {
'give': [
'scale_info::123',
],
'receive': [
'scale_info::123',
],
},
'InitiateReserveWithdraw': {
'assets': [
'scale_info::123',
],
'effects': [
'scale_info::342',
],
'reserve': 'scale_info::124',
},
'InitiateTeleport': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'effects': [
'scale_info::342',
],
},
'Null': None,
'QueryHolding': {
'assets': [
'scale_info::123',
],
'dest': 'scale_info::124',
'query_id': 'u64',
},
},
],
},
},
'V1': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::105',
],
'Version': 'u32',
},
},
'ReceiveTeleportedAsset': {
'assets': [
{
'fun': 'scale_info::107',
'id': 'scale_info::106',
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::105',
'halt_on_error': 'bool',
'instructions': [
'scale_info::345',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::116',
'beneficiary': 'scale_info::90',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'effects': [
'scale_info::347',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::116',
'receive': [
'scale_info::105',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::116',
'effects': [
'scale_info::347',
],
'reserve': 'scale_info::90',
},
'InitiateTeleport': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'effects': [
'scale_info::347',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'query_id': 'u64',
},
},
],
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'QueryResponse': {
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::105',
],
'Version': 'u32',
},
},
'ReceiveTeleportedAsset': {
'assets': [
'scale_info::105',
],
'effects': [
'scale_info::347',
],
},
'RelayedFrom': {
'message': {
'HrmpChannelAccepted': 'InnerStruct',
'HrmpChannelClosing': 'InnerStruct',
'HrmpNewChannelOpenRequest': 'InnerStruct',
'QueryResponse': 'InnerStruct',
'ReceiveTeleportedAsset': 'InnerStruct',
'RelayedFrom': 'InnerStruct',
'ReserveAssetDeposited': 'InnerStruct',
'SubscribeVersion': 'InnerStruct',
'Transact': 'InnerStruct',
'TransferAsset': 'InnerStruct',
'TransferReserveAsset': 'InnerStruct',
'UnsubscribeVersion': None,
'WithdrawAsset': 'InnerStruct',
},
'who': {
'Here': None,
'X1': 'scale_info::92',
'X2': (
'scale_info::92',
'scale_info::92',
),
'X3': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X4': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X5': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X6': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X7': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X8': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
},
},
'ReserveAssetDeposited': {
'assets': [
'scale_info::105',
],
'effects': [
'scale_info::347',
],
},
'SubscribeVersion': {
'max_response_weight': 'u64',
'query_id': 'u64',
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
'scale_info::105',
],
'beneficiary': {
'interior': 'scale_info::91',
'parents': 'u8',
},
},
'TransferReserveAsset': {
'assets': [
'scale_info::105',
],
'dest': {
'interior': 'scale_info::91',
'parents': 'u8',
},
'effects': [
'scale_info::347',
],
},
'UnsubscribeVersion': None,
'WithdrawAsset': {
'assets': [
'scale_info::105',
],
'effects': [
'scale_info::347',
],
},
},
'who': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
},
},
'ReserveAssetDeposited': {
'assets': [
{
'fun': 'scale_info::107',
'id': 'scale_info::106',
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::105',
'halt_on_error': 'bool',
'instructions': [
'scale_info::345',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::116',
'beneficiary': 'scale_info::90',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'effects': [
'scale_info::347',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::116',
'receive': [
'scale_info::105',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::116',
'effects': [
'scale_info::347',
],
'reserve': 'scale_info::90',
},
'InitiateTeleport': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'effects': [
'scale_info::347',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'query_id': 'u64',
},
},
],
},
'SubscribeVersion': {
'max_response_weight': 'u64',
'query_id': 'u64',
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
{
'fun': 'scale_info::107',
'id': 'scale_info::106',
},
],
'beneficiary': {
'interior': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::92',
'scale_info::92',
),
'X3': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X4': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X5': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X6': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X7': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X8': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
},
'parents': 'u8',
},
},
'TransferReserveAsset': {
'assets': [
{
'fun': 'scale_info::107',
'id': 'scale_info::106',
},
],
'dest': {
'interior': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::92',
'scale_info::92',
),
'X3': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X4': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X5': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X6': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X7': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X8': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
},
'parents': 'u8',
},
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::105',
'halt_on_error': 'bool',
'instructions': [
'scale_info::345',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::116',
'beneficiary': 'scale_info::90',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'effects': [
'scale_info::347',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::116',
'receive': [
'scale_info::105',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::116',
'effects': [
'scale_info::347',
],
'reserve': 'scale_info::90',
},
'InitiateTeleport': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'effects': [
'scale_info::347',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'query_id': 'u64',
},
},
],
},
'UnsubscribeVersion': None,
'WithdrawAsset': {
'assets': [
{
'fun': 'scale_info::107',
'id': 'scale_info::106',
},
],
'effects': [
{
'BuyExecution': {
'debt': 'u64',
'fees': 'scale_info::105',
'halt_on_error': 'bool',
'instructions': [
'scale_info::345',
],
'weight': 'u64',
},
'DepositAsset': {
'assets': 'scale_info::116',
'beneficiary': 'scale_info::90',
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'effects': [
'scale_info::347',
],
'max_assets': 'u32',
},
'ExchangeAsset': {
'give': 'scale_info::116',
'receive': [
'scale_info::105',
],
},
'InitiateReserveWithdraw': {
'assets': 'scale_info::116',
'effects': [
'scale_info::347',
],
'reserve': 'scale_info::90',
},
'InitiateTeleport': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'effects': [
'scale_info::347',
],
},
'Noop': None,
'QueryHolding': {
'assets': 'scale_info::116',
'dest': 'scale_info::90',
'query_id': 'u64',
},
},
],
},
},
'V2': [
{
'BuyExecution': {
'fees': {
'fun': 'scale_info::107',
'id': 'scale_info::106',
},
'weight_limit': {
'Limited': 'u64',
'Unlimited': None,
},
},
'ClaimAsset': {
'assets': [
'scale_info::105',
],
'ticket': {
'interior': 'scale_info::91',
'parents': 'u8',
},
},
'ClearError': None,
'ClearOrigin': None,
'DepositAsset': {
'assets': {
'Definite': [
'scale_info::105',
],
'Wild': 'scale_info::117',
},
'beneficiary': {
'interior': 'scale_info::91',
'parents': 'u8',
},
'max_assets': 'u32',
},
'DepositReserveAsset': {
'assets': {
'Definite': [
'scale_info::105',
],
'Wild': 'scale_info::117',
},
'dest': {
'interior': 'scale_info::91',
'parents': 'u8',
},
'max_assets': 'u32',
'xcm': [
'scale_info::102',
],
},
'DescendOrigin': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::92',
'scale_info::92',
),
'X3': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X4': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X5': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X6': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X7': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X8': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
},
'ExchangeAsset': {
'give': {
'Definite': [
'scale_info::105',
],
'Wild': 'scale_info::117',
},
'receive': [
'scale_info::105',
],
},
'HrmpChannelAccepted': {
'recipient': 'u32',
},
'HrmpChannelClosing': {
'initiator': 'u32',
'recipient': 'u32',
'sender': 'u32',
},
'HrmpNewChannelOpenRequest': {
'max_capacity': 'u32',
'max_message_size': 'u32',
'sender': 'u32',
},
'InitiateReserveWithdraw': {
'assets': {
'Definite': [
'scale_info::105',
],
'Wild': 'scale_info::117',
},
'reserve': {
'interior': 'scale_info::91',
'parents': 'u8',
},
'xcm': [
'scale_info::102',
],
},
'InitiateTeleport': {
'assets': {
'Definite': [
'scale_info::105',
],
'Wild': 'scale_info::117',
},
'dest': {
'interior': 'scale_info::91',
'parents': 'u8',
},
'xcm': [
'scale_info::102',
],
},
'QueryHolding': {
'assets': {
'Definite': [
'scale_info::105',
],
'Wild': 'scale_info::117',
},
'dest': {
'interior': 'scale_info::91',
'parents': 'u8',
},
'max_response_weight': 'u64',
'query_id': 'u64',
},
'QueryResponse': {
'max_weight': 'u64',
'query_id': 'u64',
'response': {
'Assets': [
'scale_info::105',
],
'ExecutionResult': (
None,
(
'u32',
'scale_info::86',
),
),
'Null': None,
'Version': 'u32',
},
},
'ReceiveTeleportedAsset': [
'scale_info::105',
],
'RefundSurplus': None,
'ReportError': {
'dest': {
'interior': 'scale_info::91',
'parents': 'u8',
},
'max_response_weight': 'u64',
'query_id': 'u64',
},
'ReserveAssetDeposited': [
'scale_info::105',
],
'SetAppendix': [
'scale_info::102',
],
'SetErrorHandler': [
'scale_info::102',
],
'SubscribeVersion': {
'max_response_weight': 'u64',
'query_id': 'u64',
},
'Transact': {
'call': {
'encoded': 'Bytes',
},
'origin_type': (
'Native',
'SovereignAccount',
'Superuser',
'Xcm',
),
'require_weight_at_most': 'u64',
},
'TransferAsset': {
'assets': [
'scale_info::105',
],
'beneficiary': {
'interior': 'scale_info::91',
'parents': 'u8',
},
},
'TransferReserveAsset': {
'assets': [
'scale_info::105',
],
'dest': {
'interior': 'scale_info::91',
'parents': 'u8',
},
'xcm': [
'scale_info::102',
],
},
'Trap': 'u64',
'UnsubscribeVersion': None,
'WithdrawAsset': [
'scale_info::105',
],
},
],
},
}
)
Events
Sent
XCM message sent. [to, message]
Attributes
| Name | Type | Composition |
|---|---|---|
| to | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}})}} |
| message | Xcm<()> |
[{'WithdrawAsset': ['scale_info::105'], 'ReserveAssetDeposited': ['scale_info::105'], 'ReceiveTeleportedAsset': ['scale_info::105'], 'QueryResponse': {'query_id': 'u64', 'response': {'Null': None, 'Assets': ['scale_info::105'], 'ExecutionResult': (None, ('u32', 'scale_info::86')), 'Version': 'u32'}, 'max_weight': 'u64'}, 'TransferAsset': {'assets': ['scale_info::105'], 'beneficiary': {'parents': 'u8', 'interior': 'scale_info::91'}}, 'TransferReserveAsset': {'assets': ['scale_info::105'], 'dest': {'parents': 'u8', 'interior': 'scale_info::91'}, 'xcm': ['scale_info::102']}, 'Transact': {'origin_type': ('Native', 'SovereignAccount', 'Superuser', 'Xcm'), 'require_weight_at_most': 'u64', 'call': {'encoded': 'Bytes'}}, 'HrmpNewChannelOpenRequest': {'sender': 'u32', 'max_message_size': 'u32', 'max_capacity': 'u32'}, 'HrmpChannelAccepted': {'recipient': 'u32'}, 'HrmpChannelClosing': {'initiator': 'u32', 'sender': 'u32', 'recipient': 'u32'}, 'ClearOrigin': None, 'DescendOrigin': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, 'X2': ('scale_info::92', 'scale_info::92'), 'X3': ('scale_info::92', 'scale_info::92', 'scale_info::92'), 'X4': ('scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92'), 'X5': ('scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92'), 'X6': ('scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92'), 'X7': ('scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92'), 'X8': ('scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92')}, 'ReportError': {'query_id': 'u64', 'dest': {'parents': 'u8', 'interior': 'scale_info::91'}, 'max_response_weight': 'u64'}, 'DepositAsset': {'assets': {'Definite': ['scale_info::105'], 'Wild': 'scale_info::117'}, 'max_assets': 'u32', 'beneficiary': {'parents': 'u8', 'interior': 'scale_info::91'}}, 'DepositReserveAsset': {'assets': {'Definite': ['scale_info::105'], 'Wild': 'scale_info::117'}, 'max_assets': 'u32', 'dest': {'parents': 'u8', 'interior': 'scale_info::91'}, 'xcm': ['scale_info::102']}, 'ExchangeAsset': {'give': {'Definite': ['scale_info::105'], 'Wild': 'scale_info::117'}, 'receive': ['scale_info::105']}, 'InitiateReserveWithdraw': {'assets': {'Definite': ['scale_info::105'], 'Wild': 'scale_info::117'}, 'reserve': {'parents': 'u8', 'interior': 'scale_info::91'}, 'xcm': ['scale_info::102']}, 'InitiateTeleport': {'assets': {'Definite': ['scale_info::105'], 'Wild': 'scale_info::117'}, 'dest': {'parents': 'u8', 'interior': 'scale_info::91'}, 'xcm': ['scale_info::102']}, 'QueryHolding': {'query_id': 'u64', 'dest': {'parents': 'u8', 'interior': 'scale_info::91'}, 'assets': {'Definite': ['scale_info::105'], 'Wild': 'scale_info::117'}, 'max_response_weight': 'u64'}, 'BuyExecution': {'fees': {'id': 'scale_info::106', 'fun': 'scale_info::107'}, 'weight_limit': {'Unlimited': None, 'Limited': 'u64'}}, 'RefundSurplus': None, 'SetErrorHandler': ['scale_info::102'], 'SetAppendix': ['scale_info::102'], 'ClearError': None, 'ClaimAsset': {'assets': ['scale_info::105'], 'ticket': {'parents': 'u8', 'interior': 'scale_info::91'}}, 'Trap': 'u64', 'SubscribeVersion': {'query_id': 'u64', 'max_response_weight': 'u64'}, 'UnsubscribeVersion': None}] |
Errors
Unreachable
The message and destination combination was not recognized as being reachable.
SendFailure
The message and destination was recognized as being reachable but the operation could not be completed.
BadVersion
The version of the Versioned value used is not able to be
interpreted.
AssetConfig
Calls
set_fee_rate
Attributes
| Name | Type |
|---|---|
| asset_id | T::AssetId |
| fee_rate | Option<u128> |
Python
call = substrate.compose_call(
'AssetConfig', 'set_fee_rate', {
'asset_id': 'u64',
'fee_rate': (None, 'u128'),
}
)
register_asset_location
Attributes
| Name | Type |
|---|---|
| location | T::AssetLocation |
| asset_id | T::AssetId |
Python
call = substrate.compose_call(
'AssetConfig', 'register_asset_location', {
'asset_id': 'u64',
'location': {
'Current': None,
'Para': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
},
'parents': 'u8',
},
},
}
)
Events
FeeRateChanged
Attributes
| Name | Type | Composition |
|---|---|---|
| None | T::AssetId |
u64 |
| None | Option<u128> |
(None, 'u128') |
AssetLocationRegistered
Attributes
| Name | Type | Composition |
|---|---|---|
| None | T::AssetId |
u64 |
| None | T::AssetLocation |
{'Current': None, 'Para': {'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, 'X2': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X3': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X4': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X5': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X6': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X7': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}), 'X8': ({'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'})}}} |
Storage functions
AssetIdLocation
the mapping from asset_id to asset_location Note: AssetIdLocation and AssetLocationId should be synced!
Python
result = substrate.query(
'AssetConfig', 'AssetIdLocation', ['u64']
)
Return value
{
'Current': None,
'Para': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {'id': '[u8; 32]', 'network': 'scale_info::94'},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
),
},
'parents': 'u8',
},
}
AssetLocationId
mapping from asset_location to asset_id Note: AssetIdLocation and AssetLocationId should be synced!
Python
result = substrate.query(
'AssetConfig', 'AssetLocationId', [
{
'Current': None,
'Para': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
},
'parents': 'u8',
},
},
]
)
Return value
'u64'
FeeRatePerSecond
transaction fee rate per second that an asset should be charged
Python
result = substrate.query(
'AssetConfig', 'FeeRatePerSecond', ['u64']
)
Return value
(None, 'u128')
Errors
AssetAlreadyRegistered
Assets
Calls
create
Issue a new class of fungible assets from a public origin.
This new asset class has no assets initially and its owner is the origin.
The origin must be Signed and the sender must have sufficient funds free.
Funds of sender are reserved by AssetDeposit.
Parameters:
- id: The identifier of the new asset. This must not be currently in use to identify
an existing asset.
- admin: The admin of this class of assets. The admin is the initial address of each
member of the asset class's admin team.
- min_balance: The minimum balance of this new asset that any single account must
have. If an account's balance is reduced below this, then it collapses to zero.
Emits Created event when successful.
Weight: O(1)
Attributes
| Name | Type |
|---|---|
| id | T::AssetId |
| admin | <T::Lookup as StaticLookup>::Source |
| min_balance | T::Balance |
Python
call = substrate.compose_call(
'Assets', 'create', {
'admin': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
'id': 'u64',
'min_balance': 'u128',
}
)
force_create
Issue a new class of fungible assets from a privileged origin.
This new asset class has no assets initially.
The origin must conform to ForceOrigin.
Unlike create, no funds are reserved.
id: The identifier of the new asset. This must not be currently in use to identify an existing asset.owner: The owner of this class of assets. The owner has full superuser permissions over this asset, but may later change and configure the permissions usingtransfer_ownershipandset_team.min_balance: The minimum balance of this new asset that any single account must have. If an account's balance is reduced below this, then it collapses to zero.
Emits ForceCreated event when successful.
Weight: O(1)
Attributes
| Name | Type |
|---|---|
| id | T::AssetId |
| owner | <T::Lookup as StaticLookup>::Source |
| is_sufficient | bool |
| min_balance | T::Balance |
Python
call = substrate.compose_call(
'Assets', 'force_create', {
'id': 'u64',
'is_sufficient': 'bool',
'min_balance': 'u128',
'owner': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
}
)
destroy
Destroy a class of fungible assets.
The origin must conform to ForceOrigin or must be Signed and the sender must be the
owner of the asset id.
id: The identifier of the asset to be destroyed. This must identify an existing asset.
Emits Destroyed event when successful.
NOTE: It can be helpful to first freeze an asset before destroying it so that you can provide accurate witness information and prevent users from manipulating state in a way that can make it harder to destroy.
Weight: O(c + p + a) where:
- c = (witness.accounts - witness.sufficients)
- s = witness.sufficients
- a = witness.approvals
Attributes
| Name | Type |
|---|---|
| id | T::AssetId |
| witness | DestroyWitness |
Python
call = substrate.compose_call(
'Assets', 'destroy', {
'id': 'u64',
'witness': {
'accounts': 'u32',
'approvals': 'u32',
'sufficients': 'u32',
},
}
)
mint
Mint assets of a particular class.
The origin must be Signed and the sender must be the Issuer of the asset id.
id: The identifier of the asset to have some amount minted.beneficiary: The account to be credited with the minted assets.amount: The amount of the asset to be minted.
Emits Issued event when successful.
Weight: O(1)
Modes: Pre-existing balance of beneficiary; Account pre-existence of beneficiary.
Attributes
| Name | Type |
|---|---|
| id | T::AssetId |
| beneficiary | <T::Lookup as StaticLookup>::Source |
| amount | T::Balance |
Python
call = substrate.compose_call(
'Assets', 'mint', {
'amount': 'u128',
'beneficiary': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
'id': 'u64',
}
)
burn
Reduce the balance of who by as much as possible up to amount assets of id.
Origin must be Signed and the sender should be the Manager of the asset id.
Bails with NoAccount if the who is already dead.
id: The identifier of the asset to have some amount burned.who: The account to be debited from.amount: The maximum amount by whichwho's balance should be reduced.
Emits Burned with the actual amount burned. If this takes the balance to below the
minimum for the asset, then the amount burned is increased to take it to zero.
Weight: O(1)
Modes: Post-existence of who; Pre & post Zombie-status of who.
Attributes
| Name | Type |
|---|---|
| id | T::AssetId |
| who | <T::Lookup as StaticLookup>::Source |
| amount | T::Balance |
Python
call = substrate.compose_call(
'Assets', 'burn', {
'amount': 'u128',
'id': 'u64',
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
}
)
transfer
Move some assets from the sender account to another.
Origin must be Signed.
id: The identifier of the asset to have some amount transferred.target: The account to be credited.amount: The amount by which the sender's balance of assets should be reduced andtarget's balance increased. The amount actually transferred may be slightly greater in the case that the transfer would otherwise take the sender balance above zero but below the minimum balance. Must be greater than zero.
Emits Transferred with the actual amount transferred. If this takes the source balance
to below the minimum for the asset, then the amount transferred is increased to take it
to zero.
Weight: O(1)
Modes: Pre-existence of target; Post-existence of sender; Account pre-existence of
target.
Attributes
| Name | Type |
|---|---|
| id | T::AssetId |
| target | <T::Lookup as StaticLookup>::Source |
| amount | T::Balance |
Python
call = substrate.compose_call(
'Assets', 'transfer', {
'amount': 'u128',
'id': 'u64',
'target': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
}
)
transfer_keep_alive
Move some assets from the sender account to another, keeping the sender account alive.
Origin must be Signed.
id: The identifier of the asset to have some amount transferred.target: The account to be credited.amount: The amount by which the sender's balance of assets should be reduced andtarget's balance increased. The amount actually transferred may be slightly greater in the case that the transfer would otherwise take the sender balance above zero but below the minimum balance. Must be greater than zero.
Emits Transferred with the actual amount transferred. If this takes the source balance
to below the minimum for the asset, then the amount transferred is increased to take it
to zero.
Weight: O(1)
Modes: Pre-existence of target; Post-existence of sender; Account pre-existence of
target.
Attributes
| Name | Type |
|---|---|
| id | T::AssetId |
| target | <T::Lookup as StaticLookup>::Source |
| amount | T::Balance |
Python
call = substrate.compose_call(
'Assets', 'transfer_keep_alive', {
'amount': 'u128',
'id': 'u64',
'target': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
}
)
force_transfer
Move some assets from one account to another.
Origin must be Signed and the sender should be the Admin of the asset id.
id: The identifier of the asset to have some amount transferred.source: The account to be debited.dest: The account to be credited.amount: The amount by which thesource's balance of assets should be reduced anddest's balance increased. The amount actually transferred may be slightly greater in the case that the transfer would otherwise take thesourcebalance above zero but below the minimum balance. Must be greater than zero.
Emits Transferred with the actual amount transferred. If this takes the source balance
to below the minimum for the asset, then the amount transferred is increased to take it
to zero.
Weight: O(1)
Modes: Pre-existence of dest; Post-existence of source; Account pre-existence of
dest.
Attributes
| Name | Type |
|---|---|
| id | T::AssetId |
| source | <T::Lookup as StaticLookup>::Source |
| dest | <T::Lookup as StaticLookup>::Source |
| amount | T::Balance |
Python
call = substrate.compose_call(
'Assets', 'force_transfer', {
'amount': 'u128',
'dest': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
'id': 'u64',
'source': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
}
)
freeze
Disallow further unprivileged transfers from an account.
Origin must be Signed and the sender should be the Freezer of the asset id.
id: The identifier of the asset to be frozen.who: The account to be frozen.
Emits Frozen.
Weight: O(1)
Attributes
| Name | Type |
|---|---|
| id | T::AssetId |
| who | <T::Lookup as StaticLookup>::Source |
Python
call = substrate.compose_call(
'Assets', 'freeze', {
'id': 'u64',
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
}
)
thaw
Allow unprivileged transfers from an account again.
Origin must be Signed and the sender should be the Admin of the asset id.
id: The identifier of the asset to be frozen.who: The account to be unfrozen.
Emits Thawed.
Weight: O(1)
Attributes
| Name | Type |
|---|---|
| id | T::AssetId |
| who | <T::Lookup as StaticLookup>::Source |
Python
call = substrate.compose_call(
'Assets', 'thaw', {
'id': 'u64',
'who': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
}
)
freeze_asset
Disallow further unprivileged transfers for the asset class.
Origin must be Signed and the sender should be the Freezer of the asset id.
id: The identifier of the asset to be frozen.
Emits Frozen.
Weight: O(1)
Attributes
| Name | Type |
|---|---|
| id | T::AssetId |
Python
call = substrate.compose_call(
'Assets', 'freeze_asset', {'id': 'u64'}
)
thaw_asset
Allow unprivileged transfers for the asset again.
Origin must be Signed and the sender should be the Admin of the asset id.
id: The identifier of the asset to be thawed.
Emits Thawed.
Weight: O(1)
Attributes
| Name | Type |
|---|---|
| id | T::AssetId |
Python
call = substrate.compose_call(
'Assets', 'thaw_asset', {'id': 'u64'}
)
transfer_ownership
Change the Owner of an asset.
Origin must be Signed and the sender should be the Owner of the asset id.
id: The identifier of the asset.owner: The new Owner of this asset.
Emits OwnerChanged.
Weight: O(1)
Attributes
| Name | Type |
|---|---|
| id | T::AssetId |
| owner | <T::Lookup as StaticLookup>::Source |
Python
call = substrate.compose_call(
'Assets', 'transfer_ownership', {
'id': 'u64',
'owner': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
}
)
set_team
Change the Issuer, Admin and Freezer of an asset.
Origin must be Signed and the sender should be the Owner of the asset id.
id: The identifier of the asset to be frozen.issuer: The new Issuer of this asset.admin: The new Admin of this asset.freezer: The new Freezer of this asset.
Emits TeamChanged.
Weight: O(1)
Attributes
| Name | Type |
|---|---|
| id | T::AssetId |
| issuer | <T::Lookup as StaticLookup>::Source |
| admin | <T::Lookup as StaticLookup>::Source |
| freezer | <T::Lookup as StaticLookup>::Source |
Python
call = substrate.compose_call(
'Assets', 'set_team', {
'admin': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
'freezer': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
'id': 'u64',
'issuer': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
}
)
set_metadata
Set the metadata for an asset.
Origin must be Signed and the sender should be the Owner of the asset id.
Funds of sender are reserved according to the formula:
MetadataDepositBase + MetadataDepositPerByte * (name.len + symbol.len) taking into
account any already reserved funds.
id: The identifier of the asset to update.name: The user friendly name of this asset. Limited in length byStringLimit.symbol: The exchange symbol for this asset. Limited in length byStringLimit.decimals: The number of decimals this asset uses to represent one unit.
Emits MetadataSet.
Weight: O(1)
Attributes
| Name | Type |
|---|---|
| id | T::AssetId |
| name | Vec<u8> |
| symbol | Vec<u8> |
| decimals | u8 |
Python
call = substrate.compose_call(
'Assets', 'set_metadata', {
'decimals': 'u8',
'id': 'u64',
'name': 'Bytes',
'symbol': 'Bytes',
}
)
clear_metadata
Clear the metadata for an asset.
Origin must be Signed and the sender should be the Owner of the asset id.
Any deposit is freed for the asset owner.
id: The identifier of the asset to clear.
Emits MetadataCleared.
Weight: O(1)
Attributes
| Name | Type |
|---|---|
| id | T::AssetId |
Python
call = substrate.compose_call(
'Assets', 'clear_metadata', {'id': 'u64'}
)
force_set_metadata
Force the metadata for an asset to some value.
Origin must be ForceOrigin.
Any deposit is left alone.
id: The identifier of the asset to update.name: The user friendly name of this asset. Limited in length byStringLimit.symbol: The exchange symbol for this asset. Limited in length byStringLimit.decimals: The number of decimals this asset uses to represent one unit.
Emits MetadataSet.
Weight: O(N + S) where N and S are the length of the name and symbol respectively.
Attributes
| Name | Type |
|---|---|
| id | T::AssetId |
| name | Vec<u8> |
| symbol | Vec<u8> |
| decimals | u8 |
| is_frozen | bool |
Python
call = substrate.compose_call(
'Assets', 'force_set_metadata', {
'decimals': 'u8',
'id': 'u64',
'is_frozen': 'bool',
'name': 'Bytes',
'symbol': 'Bytes',
}
)
force_clear_metadata
Clear the metadata for an asset.
Origin must be ForceOrigin.
Any deposit is returned.
id: The identifier of the asset to clear.
Emits MetadataCleared.
Weight: O(1)
Attributes
| Name | Type |
|---|---|
| id | T::AssetId |
Python
call = substrate.compose_call(
'Assets', 'force_clear_metadata', {'id': 'u64'}
)
force_asset_status
Alter the attributes of a given asset.
Origin must be ForceOrigin.
id: The identifier of the asset.owner: The new Owner of this asset.issuer: The new Issuer of this asset.admin: The new Admin of this asset.freezer: The new Freezer of this asset.min_balance: The minimum balance of this new asset that any single account must have. If an account's balance is reduced below this, then it collapses to zero.is_sufficient: Whether a non-zero balance of this asset is deposit of sufficient value to account for the state bloat associated with its balance storage. If set totrue, then non-zero balances may be stored without aconsumerreference (and thus an ED in the Balances pallet or whatever else is used to control user-account state growth).is_frozen: Whether this asset class is frozen except for permissioned/admin instructions.
Emits AssetStatusChanged with the identity of the asset.
Weight: O(1)
Attributes
| Name | Type |
|---|---|
| id | T::AssetId |
| owner | <T::Lookup as StaticLookup>::Source |
| issuer | <T::Lookup as StaticLookup>::Source |
| admin | <T::Lookup as StaticLookup>::Source |
| freezer | <T::Lookup as StaticLookup>::Source |
| min_balance | T::Balance |
| is_sufficient | bool |
| is_frozen | bool |
Python
call = substrate.compose_call(
'Assets', 'force_asset_status', {
'admin': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
'freezer': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
'id': 'u64',
'is_frozen': 'bool',
'is_sufficient': 'bool',
'issuer': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
'min_balance': 'u128',
'owner': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
}
)
approve_transfer
Approve an amount of asset for transfer by a delegated third-party account.
Origin must be Signed.
Ensures that ApprovalDeposit worth of Currency is reserved from signing account
for the purpose of holding the approval. If some non-zero amount of assets is already
approved from signing account to delegate, then it is topped up or unreserved to
meet the right value.
NOTE: The signing account does not need to own amount of assets at the point of
making this call.
id: The identifier of the asset.delegate: The account to delegate permission to transfer asset.amount: The amount of asset that may be transferred bydelegate. If there is already an approval in place, then this acts additively.
Emits ApprovedTransfer on success.
Weight: O(1)
Attributes
| Name | Type |
|---|---|
| id | T::AssetId |
| delegate | <T::Lookup as StaticLookup>::Source |
| amount | T::Balance |
Python
call = substrate.compose_call(
'Assets', 'approve_transfer', {
'amount': 'u128',
'delegate': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
'id': 'u64',
}
)
cancel_approval
Cancel all of some asset approved for delegated transfer by a third-party account.
Origin must be Signed and there must be an approval in place between signer and
delegate.
Unreserves any deposit previously reserved by approve_transfer for the approval.
id: The identifier of the asset.delegate: The account delegated permission to transfer asset.
Emits ApprovalCancelled on success.
Weight: O(1)
Attributes
| Name | Type |
|---|---|
| id | T::AssetId |
| delegate | <T::Lookup as StaticLookup>::Source |
Python
call = substrate.compose_call(
'Assets', 'cancel_approval', {
'delegate': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
'id': 'u64',
}
)
force_cancel_approval
Cancel all of some asset approved for delegated transfer by a third-party account.
Origin must be either ForceOrigin or Signed origin with the signer being the Admin
account of the asset id.
Unreserves any deposit previously reserved by approve_transfer for the approval.
id: The identifier of the asset.delegate: The account delegated permission to transfer asset.
Emits ApprovalCancelled on success.
Weight: O(1)
Attributes
| Name | Type |
|---|---|
| id | T::AssetId |
| owner | <T::Lookup as StaticLookup>::Source |
| delegate | <T::Lookup as StaticLookup>::Source |
Python
call = substrate.compose_call(
'Assets', 'force_cancel_approval', {
'delegate': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
'id': 'u64',
'owner': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
}
)
transfer_approved
Transfer some asset balance from a previously delegated account to some third-party account.
Origin must be Signed and there must be an approval in place by the owner to the
signer.
If the entire amount approved for transfer is transferred, then any deposit previously
reserved by approve_transfer is unreserved.
id: The identifier of the asset.owner: The account which previously approved for a transfer of at leastamountand from which the asset balance will be withdrawn.destination: The account to which the asset balance ofamountwill be transferred.amount: The amount of assets to transfer.
Emits TransferredApproved on success.
Weight: O(1)
Attributes
| Name | Type |
|---|---|
| id | T::AssetId |
| owner | <T::Lookup as StaticLookup>::Source |
| destination | <T::Lookup as StaticLookup>::Source |
| amount | T::Balance |
Python
call = substrate.compose_call(
'Assets', 'transfer_approved', {
'amount': 'u128',
'destination': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
'id': 'u64',
'owner': {
'Address20': '[u8; 20]',
'Address32': '[u8; 32]',
'Id': 'AccountId',
'Index': 'u32',
'Raw': 'Bytes',
},
}
)
touch
Create an asset account for non-provider assets.
A deposit will be taken from the signer account.
origin: Must be Signed; the signer account must have sufficient funds for a deposit to be taken.id: The identifier of the asset for the account to be created.
Emits Touched event when successful.
Attributes
| Name | Type |
|---|---|
| id | T::AssetId |
Python
call = substrate.compose_call(
'Assets', 'touch', {'id': 'u64'}
)
refund
Return the deposit (if any) of an asset account.
The origin must be Signed.
id: The identifier of the asset for the account to be created.allow_burn: Iftruethen assets may be destroyed in order to complete the refund.
Emits Refunded event when successful.
Attributes
| Name | Type |
|---|---|
| id | T::AssetId |
| allow_burn | bool |
Python
call = substrate.compose_call(
'Assets', 'refund', {'allow_burn': 'bool', 'id': 'u64'}
)
Events
Created
Some asset class was created.
Attributes
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u64 |
| creator | T::AccountId |
AccountId |
| owner | T::AccountId |
AccountId |
Issued
Some assets were issued.
Attributes
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u64 |
| owner | T::AccountId |
AccountId |
| total_supply | T::Balance |
u128 |
Transferred
Some assets were transferred.
Attributes
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u64 |
| from | T::AccountId |
AccountId |
| to | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
Burned
Some assets were destroyed.
Attributes
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u64 |
| owner | T::AccountId |
AccountId |
| balance | T::Balance |
u128 |
TeamChanged
The management team changed.
Attributes
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u64 |
| issuer | T::AccountId |
AccountId |
| admin | T::AccountId |
AccountId |
| freezer | T::AccountId |
AccountId |
OwnerChanged
The owner changed.
Attributes
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u64 |
| owner | T::AccountId |
AccountId |
Frozen
Some account who was frozen.
Attributes
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u64 |
| who | T::AccountId |
AccountId |
Thawed
Some account who was thawed.
Attributes
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u64 |
| who | T::AccountId |
AccountId |
AssetFrozen
Some asset asset_id was frozen.
Attributes
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u64 |
AssetThawed
Some asset asset_id was thawed.
Attributes
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u64 |
Destroyed
An asset class was destroyed.
Attributes
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u64 |
ForceCreated
Some asset class was force-created.
Attributes
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u64 |
| owner | T::AccountId |
AccountId |
MetadataSet
New metadata has been set for an asset.
Attributes
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u64 |
| name | Vec<u8> |
Bytes |
| symbol | Vec<u8> |
Bytes |
| decimals | u8 |
u8 |
| is_frozen | bool |
bool |
MetadataCleared
Metadata has been cleared for an asset.
Attributes
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u64 |
ApprovedTransfer
(Additional) funds have been approved for transfer to a destination account.
Attributes
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u64 |
| source | T::AccountId |
AccountId |
| delegate | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
ApprovalCancelled
An approval for account delegate was cancelled by owner.
Attributes
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u64 |
| owner | T::AccountId |
AccountId |
| delegate | T::AccountId |
AccountId |
TransferredApproved
An amount was transferred in its entirety from owner to destination by
the approved delegate.
Attributes
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u64 |
| owner | T::AccountId |
AccountId |
| delegate | T::AccountId |
AccountId |
| destination | T::AccountId |
AccountId |
| amount | T::Balance |
u128 |
AssetStatusChanged
An asset has had its attributes changed by the Force origin.
Attributes
| Name | Type | Composition |
|---|---|---|
| asset_id | T::AssetId |
u64 |
Storage functions
Asset
Details of an asset.
Python
result = substrate.query(
'Assets', 'Asset', ['u64']
)
Return value
{
'accounts': 'u32',
'admin': 'AccountId',
'approvals': 'u32',
'deposit': 'u128',
'freezer': 'AccountId',
'is_frozen': 'bool',
'is_sufficient': 'bool',
'issuer': 'AccountId',
'min_balance': 'u128',
'owner': 'AccountId',
'sufficients': 'u32',
'supply': 'u128',
}
Account
The holdings of a specific account for a specific asset.
Python
result = substrate.query(
'Assets', 'Account', ['u64', 'AccountId']
)
Return value
{
'balance': 'u128',
'extra': (),
'is_frozen': 'bool',
'reason': {
'Consumer': None,
'DepositHeld': 'u128',
'DepositRefunded': None,
'Sufficient': None,
},
}
Approvals
Approved balance transfers. First balance is the amount approved for transfer. Second
is the amount of T::Currency reserved for storing this.
First key is the asset ID, second key is the owner and third key is the delegate.
Python
result = substrate.query(
'Assets', 'Approvals', ['u64', 'AccountId', 'AccountId']
)
Return value
{'amount': 'u128', 'deposit': 'u128'}
Metadata
Metadata of an asset.
Python
result = substrate.query(
'Assets', 'Metadata', ['u64']
)
Return value
{
'decimals': 'u8',
'deposit': 'u128',
'is_frozen': 'bool',
'name': 'Bytes',
'symbol': 'Bytes',
}
Constants
AssetDeposit
The basic amount of funds that must be reserved for an asset.
Value
10000000000000000000000
Python
constant = substrate.get_constant('Assets', 'AssetDeposit')
AssetAccountDeposit
The amount of funds that must be reserved for a non-provider asset account to be maintained.
Value
0
Python
constant = substrate.get_constant('Assets', 'AssetAccountDeposit')
MetadataDepositBase
The basic amount of funds that must be reserved when adding metadata to your asset.
Value
4230000000000000000
Python
constant = substrate.get_constant('Assets', 'MetadataDepositBase')
MetadataDepositPerByte
The additional funds that must be reserved for the number of bytes you store in your metadata.
Value
60000000000000000
Python
constant = substrate.get_constant('Assets', 'MetadataDepositPerByte')
ApprovalDeposit
The amount of funds that must be reserved when creating a new approval.
Value
0
Python
constant = substrate.get_constant('Assets', 'ApprovalDeposit')
StringLimit
The maximum length of a name or symbol stored on-chain.
Value
50
Python
constant = substrate.get_constant('Assets', 'StringLimit')
Errors
BalanceLow
Account balance must be greater than or equal to the transfer amount.
NoAccount
The account to alter does not exist.
NoPermission
The signing account has no permission to do the operation.
Unknown
The given asset ID is unknown.
Frozen
The origin account is frozen.
InUse
The asset ID is already taken.
BadWitness
Invalid witness data given.
MinBalanceZero
Minimum balance should be non-zero.
NoProvider
Unable to increment the consumer reference counters on the account. Either no provider reference exists to allow a non-zero balance of a non-self-sufficient asset, or the maximum number of consumers has been reached.
BadMetadata
Invalid metadata given.
Unapproved
No approval exists that would allow the transfer.
WouldDie
The source account would not survive the transfer and it needs to stay alive.
AlreadyExists
The asset-account already exists.
NoDeposit
The asset-account doesn't have an associated deposit.
WouldBurn
The operation would result in funds being burned.
XTokens
Calls
transfer
Transfer native currencies.
dest_weight is the weight for XCM execution on the dest chain, and
it would be charged from the transferred assets. If set below
requirements, the execution may fail and assets wouldn't be
received.
It's a no-op if any error on local XCM execution or message sending. Note sending assets out per se doesn't guarantee they would be received. Receiving depends on if the XCM message could be delivered by the network, and if the receiving chain would handle messages correctly.
Attributes
| Name | Type |
|---|---|
| currency_id | T::CurrencyId |
| amount | T::Balance |
| dest | Box<VersionedMultiLocation> |
| dest_weight | Weight |
Python
call = substrate.compose_call(
'XTokens', 'transfer', {
'amount': 'u128',
'currency_id': {
'OtherReserve': 'u64',
'SelfReserve': None,
},
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
},
'parents': 'u8',
},
},
'dest_weight': 'u64',
}
)
transfer_multiasset
Transfer MultiAsset.
dest_weight is the weight for XCM execution on the dest chain, and
it would be charged from the transferred assets. If set below
requirements, the execution may fail and assets wouldn't be
received.
It's a no-op if any error on local XCM execution or message sending. Note sending assets out per se doesn't guarantee they would be received. Receiving depends on if the XCM message could be delivered by the network, and if the receiving chain would handle messages correctly.
Attributes
| Name | Type |
|---|---|
| asset | Box<VersionedMultiAsset> |
| dest | Box<VersionedMultiLocation> |
| dest_weight | Weight |
Python
call = substrate.compose_call(
'XTokens', 'transfer_multiasset', {
'asset': {
'V0': {
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'AllConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'ConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'None': None,
},
'V1': {
'fun': {
'Fungible': 'u128',
'NonFungible': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'id': {
'Abstract': 'Bytes',
'Concrete': {
'interior': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::92',
'scale_info::92',
),
'X3': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X4': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X5': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X6': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X7': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X8': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
},
'parents': 'u8',
},
},
},
},
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
},
'parents': 'u8',
},
},
'dest_weight': 'u64',
}
)
transfer_with_fee
Transfer native currencies specifying the fee and amount as separate.
dest_weight is the weight for XCM execution on the dest chain, and
it would be charged from the transferred assets. If set below
requirements, the execution may fail and assets wouldn't be
received.
fee is the amount to be spent to pay for execution in destination
chain. Both fee and amount will be subtracted form the callers
balance.
If fee is not high enough to cover for the execution costs in the
destination chain, then the assets will be trapped in the
destination chain
It's a no-op if any error on local XCM execution or message sending. Note sending assets out per se doesn't guarantee they would be received. Receiving depends on if the XCM message could be delivered by the network, and if the receiving chain would handle messages correctly.
Attributes
| Name | Type |
|---|---|
| currency_id | T::CurrencyId |
| amount | T::Balance |
| fee | T::Balance |
| dest | Box<VersionedMultiLocation> |
| dest_weight | Weight |
Python
call = substrate.compose_call(
'XTokens', 'transfer_with_fee', {
'amount': 'u128',
'currency_id': {
'OtherReserve': 'u64',
'SelfReserve': None,
},
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
},
'parents': 'u8',
},
},
'dest_weight': 'u64',
'fee': 'u128',
}
)
transfer_multiasset_with_fee
Transfer MultiAsset specifying the fee and amount as separate.
dest_weight is the weight for XCM execution on the dest chain, and
it would be charged from the transferred assets. If set below
requirements, the execution may fail and assets wouldn't be
received.
fee is the multiasset to be spent to pay for execution in
destination chain. Both fee and amount will be subtracted form the
callers balance For now we only accept fee and asset having the same
MultiLocation id.
If fee is not high enough to cover for the execution costs in the
destination chain, then the assets will be trapped in the
destination chain
It's a no-op if any error on local XCM execution or message sending. Note sending assets out per se doesn't guarantee they would be received. Receiving depends on if the XCM message could be delivered by the network, and if the receiving chain would handle messages correctly.
Attributes
| Name | Type |
|---|---|
| asset | Box<VersionedMultiAsset> |
| fee | Box<VersionedMultiAsset> |
| dest | Box<VersionedMultiLocation> |
| dest_weight | Weight |
Python
call = substrate.compose_call(
'XTokens', 'transfer_multiasset_with_fee', {
'asset': {
'V0': {
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'AllConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'ConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'None': None,
},
'V1': {
'fun': {
'Fungible': 'u128',
'NonFungible': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'id': {
'Abstract': 'Bytes',
'Concrete': {
'interior': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::92',
'scale_info::92',
),
'X3': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X4': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X5': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X6': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X7': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X8': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
},
'parents': 'u8',
},
},
},
},
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
},
'parents': 'u8',
},
},
'dest_weight': 'u64',
'fee': {
'V0': {
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'AllConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
},
'ConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
'X2': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X3': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X4': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X5': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X6': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X7': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
'X8': (
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
{
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
),
},
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'None': None,
},
'V1': {
'fun': {
'Fungible': 'u128',
'NonFungible': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'id': {
'Abstract': 'Bytes',
'Concrete': {
'interior': {
'Here': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::92',
'scale_info::92',
),
'X3': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X4': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X5': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X6': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X7': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
'X8': (
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
'scale_info::92',
),
},
'parents': 'u8',
},
},
},
},
}
)
transfer_multicurrencies
Transfer several currencies specifying the item to be used as fee
dest_weight is the weight for XCM execution on the dest chain, and
it would be charged from the transferred assets. If set below
requirements, the execution may fail and assets wouldn't be
received.
fee_item is index of the currencies tuple that we want to use for
payment
It's a no-op if any error on local XCM execution or message sending. Note sending assets out per se doesn't guarantee they would be received. Receiving depends on if the XCM message could be delivered by the network, and if the receiving chain would handle messages correctly.
Attributes
| Name | Type |
|---|---|
| currencies | Vec<(T::CurrencyId, T::Balance)> |
| fee_item | u32 |
| dest | Box<VersionedMultiLocation> |
| dest_weight | Weight |
Python
call = substrate.compose_call(
'XTokens', 'transfer_multicurrencies', {
'currencies': [
(
{
'OtherReserve': 'u64',
'SelfReserve': None,
},
'u128',
),
],
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
},
'parents': 'u8',
},
},
'dest_weight': 'u64',
'fee_item': 'u32',
}
)
transfer_multiassets
Transfer several MultiAsset specifying the item to be used as fee
dest_weight is the weight for XCM execution on the dest chain, and
it would be charged from the transferred assets. If set below
requirements, the execution may fail and assets wouldn't be
received.
fee_item is index of the MultiAssets that we want to use for
payment
It's a no-op if any error on local XCM execution or message sending. Note sending assets out per se doesn't guarantee they would be received. Receiving depends on if the XCM message could be delivered by the network, and if the receiving chain would handle messages correctly.
Attributes
| Name | Type |
|---|---|
| assets | Box<VersionedMultiAssets> |
| fee_item | u32 |
| dest | Box<VersionedMultiLocation> |
| dest_weight | Weight |
Python
call = substrate.compose_call(
'XTokens', 'transfer_multiassets', {
'assets': {
'V0': [
{
'AbstractFungible': {
'amount': 'u128',
'id': 'Bytes',
},
'AbstractNonFungible': {
'class': 'Bytes',
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'All': None,
'AllAbstractFungible': {
'id': 'Bytes',
},
'AllAbstractNonFungible': {
'class': 'Bytes',
},
'AllConcreteFungible': {
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::125',
'scale_info::125',
),
'X3': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X4': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X5': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X6': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X7': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X8': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
},
},
'AllConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::125',
'scale_info::125',
),
'X3': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X4': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X5': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X6': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X7': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X8': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
},
},
'AllFungible': None,
'AllNonFungible': None,
'ConcreteFungible': {
'amount': 'u128',
'id': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::125',
'scale_info::125',
),
'X3': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X4': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X5': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X6': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X7': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X8': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
},
},
'ConcreteNonFungible': {
'class': {
'Null': None,
'X1': {
'AccountId32': 'InnerStruct',
'AccountIndex64': 'InnerStruct',
'AccountKey20': 'InnerStruct',
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': 'InnerStruct',
},
'X2': (
'scale_info::125',
'scale_info::125',
),
'X3': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X4': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X5': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X6': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X7': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
'X8': (
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
'scale_info::125',
),
},
'instance': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'None': None,
},
],
'V1': [
{
'fun': {
'Fungible': 'u128',
'NonFungible': {
'Array16': '[u8; 16]',
'Array32': '[u8; 32]',
'Array4': '[u8; 4]',
'Array8': '[u8; 8]',
'Blob': 'Bytes',
'Index': 'u128',
'Undefined': None,
},
},
'id': {
'Abstract': 'Bytes',
'Concrete': {
'interior': 'scale_info::91',
'parents': 'u8',
},
},
},
],
},
'dest': {
'V0': {
'Null': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Fraction': {
'denom': 'u32',
'nom': 'u32',
},
'Members': {
'count': 'u32',
},
'MoreThanProportion': {
'denom': 'u32',
'nom': 'u32',
},
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Parent': None,
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
),
},
'V1': {
'interior': {
'Here': None,
'X1': {
'AccountId32': {
'id': '[u8; 32]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountIndex64': {
'index': 'u64',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'AccountKey20': {
'key': '[u8; 20]',
'network': {
'Any': None,
'Kusama': None,
'Named': 'Bytes',
'Polkadot': None,
},
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': {
'Executive': None,
'Index': 'u32',
'Judicial': None,
'Legislative': None,
'Named': 'Bytes',
'Technical': None,
'Unit': None,
},
'part': {
'AtLeastProportion': 'InnerStruct',
'Fraction': 'InnerStruct',
'Members': 'InnerStruct',
'MoreThanProportion': 'InnerStruct',
'Voice': None,
},
},
},
'X2': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X3': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X4': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X5': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X6': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X7': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
'X8': (
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
{
'AccountId32': {
'id': '[u8; 32]',
'network': 'scale_info::94',
},
'AccountIndex64': {
'index': 'u64',
'network': 'scale_info::94',
},
'AccountKey20': {
'key': '[u8; 20]',
'network': 'scale_info::94',
},
'GeneralIndex': 'u128',
'GeneralKey': 'Bytes',
'OnlyChild': None,
'PalletInstance': 'u8',
'Parachain': 'u32',
'Plurality': {
'id': 'scale_info::98',
'part': 'scale_info::99',
},
},
),
},
'parents': 'u8',
},
},
'dest_weight': 'u64',
'fee_item': 'u32',
}
)
Events
TransferredMultiAssets
Transferred MultiAsset with fee.
Attributes
| Name | Type | Composition |
|---|---|---|
| sender | T::AccountId |
AccountId |
| assets | MultiAssets |
[{'id': {'Concrete': {'parents': 'u8', 'interior': 'scale_info::91'}, 'Abstract': 'Bytes'}, 'fun': {'Fungible': 'u128', 'NonFungible': {'Undefined': None, 'Index': 'u128', 'Array4': '[u8; 4]', 'Array8': '[u8; 8]', 'Array16': '[u8; 16]', 'Array32': '[u8; 32]', 'Blob': 'Bytes'}}}] |
| fee | MultiAsset |
{'id': {'Concrete': {'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, 'X2': ('scale_info::92', 'scale_info::92'), 'X3': ('scale_info::92', 'scale_info::92', 'scale_info::92'), 'X4': ('scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92'), 'X5': ('scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92'), 'X6': ('scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92'), 'X7': ('scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92'), 'X8': ('scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92')}}, 'Abstract': 'Bytes'}, 'fun': {'Fungible': 'u128', 'NonFungible': {'Undefined': None, 'Index': 'u128', 'Array4': '[u8; 4]', 'Array8': '[u8; 8]', 'Array16': '[u8; 16]', 'Array32': '[u8; 32]', 'Blob': 'Bytes'}}} |
| dest | MultiLocation |
{'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'id': '[u8; 32]'}, 'AccountIndex64': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'index': 'u64'}, 'AccountKey20': {'network': {'Any': None, 'Named': 'Bytes', 'Polkadot': None, 'Kusama': None}, 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': {'Unit': None, 'Named': 'Bytes', 'Index': 'u32', 'Executive': None, 'Technical': None, 'Legislative': None, 'Judicial': None}, 'part': {'Voice': None, 'Members': 'InnerStruct', 'Fraction': 'InnerStruct', 'AtLeastProportion': 'InnerStruct', 'MoreThanProportion': 'InnerStruct'}}}, 'X2': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X3': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X4': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X5': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X6': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X7': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}), 'X8': ({'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}}, {'Parachain': 'u32', 'AccountId32': {'network': 'scale_info::94', 'id': '[u8; 32]'}, 'AccountIndex64': {'network': 'scale_info::94', 'index': 'u64'}, 'AccountKey20': {'network': 'scale_info::94', 'key': '[u8; 20]'}, 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': {'id': 'scale_info::98', 'part': 'scale_info::99'}})}} |
Constants
SelfLocation
Self chain location.
Value
{'interior': 'Here', 'parents': 0}
Python
constant = substrate.get_constant('XTokens', 'SelfLocation')
BaseXcmWeight
Base XCM weight.
The actually weight for an XCM message is T::BaseXcmWeight +
T::Weigher::weight(&msg).
Value
100000000
Python
constant = substrate.get_constant('XTokens', 'BaseXcmWeight')
Errors
AssetHasNoReserve
Asset has no reserve location.
NotCrossChainTransfer
Not cross-chain transfer.
InvalidDest
Invalid transfer destination.
NotCrossChainTransferableCurrency
Currency is not cross-chain transferable.
UnweighableMessage
The message's weight could not be determined.
XcmExecutionFailed
XCM execution failed.
CannotReanchor
Could not re-anchor the assets to declare the fees for the destination chain.
InvalidAncestry
Could not get ancestry of asset reserve location.
InvalidAsset
The MultiAsset is invalid.
DestinationNotInvertible
The destination MultiLocation provided cannot be inverted.
BadVersion
The version of the Versioned value used is not able to be
interpreted.
DistinctReserveForAssetAndFee
We tried sending distinct asset and fee but they have different reserve chains.
ZeroFee
The fee is zero.
ZeroAmount
The transfering asset amount is zero.
TooManyAssetsBeingSent
The number of assets to be sent is over the maximum.
AssetIndexNonExistent
The specified index does not exist in a MultiAssets struct.
FeeNotEnough
Fee is not enough.
NotSupportedMultiLocation
Not supported MultiLocation
MinXcmFeeNotDefined
MinXcmFee not registered for certain reserve location
Spambot
Calls
start
Attributes
| Name | Type |
|---|---|
| para | ParaId |
| payload | Vec<u8> |
Python
call = substrate.compose_call(
'Spambot', 'start', {'para': 'u32', 'payload': 'Bytes'}
)
start_many
Attributes
| Name | Type |
|---|---|
| para | ParaId |
| count | u32 |
| payload | Vec<u8> |
Python
call = substrate.compose_call(
'Spambot', 'start_many', {
'count': 'u32',
'para': 'u32',
'payload': 'Bytes',
}
)
stop
Attributes
| Name | Type |
|---|---|
| para | ParaId |
Python
call = substrate.compose_call(
'Spambot', 'stop', {'para': 'u32'}
)
stop_all
Attributes
| Name | Type |
|---|---|
| maybe_para | Option<ParaId> |
Python
call = substrate.compose_call(
'Spambot', 'stop_all', {'maybe_para': (None, 'u32')}
)
ping
Attributes
| Name | Type |
|---|---|
| seq | u32 |
| payload | Vec<u8> |
Python
call = substrate.compose_call(
'Spambot', 'ping', {'payload': 'Bytes', 'seq': 'u32'}
)
pong
Attributes
| Name | Type |
|---|---|
| seq | u32 |
| payload | Vec<u8> |
Python
call = substrate.compose_call(
'Spambot', 'pong', {'payload': 'Bytes', 'seq': 'u32'}
)
Events
PingSent
Attributes
| Name | Type | Composition |
|---|---|---|
| None | ParaId |
u32 |
| None | u32 |
u32 |
| None | Vec<u8> |
Bytes |
Pinged
Attributes
| Name | Type | Composition |
|---|---|---|
| None | ParaId |
u32 |
| None | u32 |
u32 |
| None | Vec<u8> |
Bytes |
PongSent
Attributes
| Name | Type | Composition |
|---|---|---|
| None | ParaId |
u32 |
| None | u32 |
u32 |
| None | Vec<u8> |
Bytes |
Ponged
Attributes
| Name | Type | Composition |
|---|---|---|
| None | ParaId |
u32 |
| None | u32 |
u32 |
| None | Vec<u8> |
Bytes |
| None | T::BlockNumber |
u32 |
ErrorSendingPing
Attributes
| Name | Type | Composition |
|---|---|---|
| None | SendError |
{'CannotReachDestination': ({'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, 'X2': ('scale_info::92', 'scale_info::92'), 'X3': ('scale_info::92', 'scale_info::92', 'scale_info::92'), 'X4': ('scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92'), 'X5': ('scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92'), 'X6': ('scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92'), 'X7': ('scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92'), 'X8': ('scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92')}}, [{'WithdrawAsset': ['scale_info::105'], 'ReserveAssetDeposited': ['scale_info::105'], 'ReceiveTeleportedAsset': ['scale_info::105'], 'QueryResponse': 'InnerStruct', 'TransferAsset': 'InnerStruct', 'TransferReserveAsset': 'InnerStruct', 'Transact': 'InnerStruct', 'HrmpNewChannelOpenRequest': 'InnerStruct', 'HrmpChannelAccepted': 'InnerStruct', 'HrmpChannelClosing': 'InnerStruct', 'ClearOrigin': None, 'DescendOrigin': 'scale_info::91', 'ReportError': 'InnerStruct', 'DepositAsset': 'InnerStruct', 'DepositReserveAsset': 'InnerStruct', 'ExchangeAsset': 'InnerStruct', 'InitiateReserveWithdraw': 'InnerStruct', 'InitiateTeleport': 'InnerStruct', 'QueryHolding': 'InnerStruct', 'BuyExecution': 'InnerStruct', 'RefundSurplus': None, 'SetErrorHandler': ['scale_info::102'], 'SetAppendix': ['scale_info::102'], 'ClearError': None, 'ClaimAsset': 'InnerStruct', 'Trap': 'u64', 'SubscribeVersion': 'InnerStruct', 'UnsubscribeVersion': None}]), 'Transport': None, 'Unroutable': None, 'DestinationUnsupported': None, 'ExceedsMaxMessageSize': None} |
| None | ParaId |
u32 |
| None | u32 |
u32 |
| None | Vec<u8> |
Bytes |
ErrorSendingPong
Attributes
| Name | Type | Composition |
|---|---|---|
| None | SendError |
{'CannotReachDestination': ({'parents': 'u8', 'interior': {'Here': None, 'X1': {'Parachain': 'u32', 'AccountId32': 'InnerStruct', 'AccountIndex64': 'InnerStruct', 'AccountKey20': 'InnerStruct', 'PalletInstance': 'u8', 'GeneralIndex': 'u128', 'GeneralKey': 'Bytes', 'OnlyChild': None, 'Plurality': 'InnerStruct'}, 'X2': ('scale_info::92', 'scale_info::92'), 'X3': ('scale_info::92', 'scale_info::92', 'scale_info::92'), 'X4': ('scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92'), 'X5': ('scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92'), 'X6': ('scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92'), 'X7': ('scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92'), 'X8': ('scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92', 'scale_info::92')}}, [{'WithdrawAsset': ['scale_info::105'], 'ReserveAssetDeposited': ['scale_info::105'], 'ReceiveTeleportedAsset': ['scale_info::105'], 'QueryResponse': 'InnerStruct', 'TransferAsset': 'InnerStruct', 'TransferReserveAsset': 'InnerStruct', 'Transact': 'InnerStruct', 'HrmpNewChannelOpenRequest': 'InnerStruct', 'HrmpChannelAccepted': 'InnerStruct', 'HrmpChannelClosing': 'InnerStruct', 'ClearOrigin': None, 'DescendOrigin': 'scale_info::91', 'ReportError': 'InnerStruct', 'DepositAsset': 'InnerStruct', 'DepositReserveAsset': 'InnerStruct', 'ExchangeAsset': 'InnerStruct', 'InitiateReserveWithdraw': 'InnerStruct', 'InitiateTeleport': 'InnerStruct', 'QueryHolding': 'InnerStruct', 'BuyExecution': 'InnerStruct', 'RefundSurplus': None, 'SetErrorHandler': ['scale_info::102'], 'SetAppendix': ['scale_info::102'], 'ClearError': None, 'ClaimAsset': 'InnerStruct', 'Trap': 'u64', 'SubscribeVersion': 'InnerStruct', 'UnsubscribeVersion': None}]), 'Transport': None, 'Unroutable': None, 'DestinationUnsupported': None, 'ExceedsMaxMessageSize': None} |
| None | ParaId |
u32 |
| None | u32 |
u32 |
| None | Vec<u8> |
Bytes |
UnknownPong
Attributes
| Name | Type | Composition |
|---|---|---|
| None | ParaId |
u32 |
| None | u32 |
u32 |
| None | Vec<u8> |
Bytes |
Storage functions
Targets
The target parachains to ping.
Python
result = substrate.query(
'Spambot', 'Targets', []
)
Return value
[('u32', 'Bytes')]
PingCount
The total number of pings sent.
Python
result = substrate.query(
'Spambot', 'PingCount', []
)
Return value
'u32'
Pings
The sent pings.
Python
result = substrate.query(
'Spambot', 'Pings', ['u32']
)
Return value
'u32'
Errors
TooManyTargets
Too many parachains have been added as a target.
PayloadTooLarge
The payload provided is too large, limit is 1024 bytes.